/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.7;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #f3f3f3;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #000;
    font-size: 1.5rem;
    margin: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #000000;
    opacity: 0.7;
}

.cta-button {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h2 {
    margin-bottom: 1.5rem;
    color: #000000;
}

.highlight {
    color: #000000;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000000;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    padding: 1rem 2rem;
    border: 2px solid #000000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #f3f3f3;
}

.image-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

.trusted-by p {
    color: #000000;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: #000000;
    font-weight: 500;
    opacity: 0.8;
}

.logo-item svg {
    color: #000000;
    width: 20px;
    height: 20px;
}



/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: #f3f3f3;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid #f3f3f3;
    transition: all 0.3s ease;
}

.section-header h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #000000;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Opportunities Section */
.opportunities {
    background: #f3f3f3;
}

.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f3f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-color: #000000;
}

.featured-card {
    border: 2px solid #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-range {
    background: #f3f3f3;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid #e8e8e8;
}



.card h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.role-type {
    color: #000000;
    opacity: 0.6;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card li {
    color: #000000;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.card li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 50%;
    top: 0.2em;
}

.card li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.5em;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.card-cta {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #000000;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.featured-card .card-cta {
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.featured-card .card-cta:hover {
    background: #333333;
    transform: translateY(-2px);
}

.card-cta:hover {
    opacity: 0.7;
}

/* Opportunity Notice Styles */
.opportunity-notice {
    background: #f3f3f3;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    flex-shrink: 0;
    color: #000000;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.notice-icon svg {
    width: 20px;
    height: 20px;
}

.notice-text {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.5;
    opacity: 0.9;
}

.notice-text strong {
    color: #000000;
    font-weight: 600;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    color: #000000;
    width: 48px;
    height: 48px;
}

.benefit-item h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Application Section */
.application {
    background: #000000;
    color: #ffffff;
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.application-text .section-tag {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.application-text h3 {
    color: #ffffff;
}

.application-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

.application-benefits {
    margin-top: 2rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkmark {
    background: #000000;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.checkmark svg {
    color: #ffffff;
    width: 14px;
    height: 14px;
}

.benefit-point span:last-child {
    color: rgba(255,255,255,0.9);
}

/* Application Form */
.application-form {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-form h4 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-right: 0.75rem;
}

/* Testimonials */
.testimonials {
    background: #f3f3f3;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f3f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #000000;
}

.testimonial-author strong {
    color: #000000;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #000000;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-section h5 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #ffffff;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    opacity: 0.6;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .opportunity-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content,
    .about-content,
    .application-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .benefits-grid,
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .opportunity-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .featured-card .card-cta {
        width: 100%;
        text-align: center;
    }
    
    .partner-logos {
        gap: 1.5rem;
    }
    
    .logo-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .card,
    .testimonial-card,
    .application-form {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.card,
.benefit-item,
.testimonial-card {
    animation: fadeInUp 0.8s ease forwards;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .application {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}
