:root {
    --primary-color: #006400; /* Dark green */
    --secondary-color: #2e8b57; /* Sea green, softer forest */
    --accent-color: #f1f8e9; /* Light green tint */
    --text-color: #2c3e50;
    --text-light: #596a7a;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --border-radius: 16px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 25px rgba(0, 100, 0, 0.05);
    --shadow-hover: 0 12px 35px rgba(0, 100, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.25;
}

ul, ol {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.slogan {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.15);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(0, 100, 0, 0.2);
    box-shadow: none;
}
.cta-button.secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
    padding: 6rem 5% 4rem;
    background: radial-gradient(circle at top center, var(--accent-color) 0%, var(--bg-color) 100%);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.schools-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.school-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1 1 350px;
    max-width: 450px;
    text-align: left;
    transition: var(--transition);
    border-top: 6px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.school-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(46,139,87,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.school-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.school-card ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    position: relative;
    list-style-type: none;
    padding-left: 28px;
}

.school-card ul li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 5rem 0 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Why Us */
.why-us {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1 1 300px;
    max-width: 380px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-item .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
}

/* Recruitment */
.recruitment-section {
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.recruitment-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.recruitment-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto 4rem;
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 5rem;
    margin-top: 2rem;
}

.profession-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.profession-card:hover {
    box-shadow: var(--shadow);
    background: var(--white);
    transform: translateY(-5px);
    border-color: rgba(46,139,87, 0.2);
}

.card-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

.profession-card h4 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.instructions-box {
    background: var(--accent-color);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 5rem;
    border-left: 6px solid var(--primary-color);
}

.instructions-box h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
}

.instructions-box ol {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    color: var(--text-color);
}

.instructions-box ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.instructions-box ol li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 100, 0, 0.1);
}
.contact-links p {
    font-size: 1.15rem;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    background: transparent;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: 0.3s;
    line-height: 1;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Info Section */
.info-section {
    background-color: var(--bg-color);
}

.info-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.02);
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-card p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}
.info-card strong {
    color: var(--text-color);
}

.w-100 {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.mt-4 {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quick-links ul li {
    margin-bottom: 1rem;
    list-style-type: none;
    padding-left: 0;
}
.quick-links ul li a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-weight: 500;
}
.quick-links ul li a::before {
    content: '↓';
    margin-right: 8px;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.85);
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-content p {
    margin-bottom: 1.5rem;
}

.footer-links {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .stats-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .logo {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .main-nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .main-nav a {
        display: inline-block;
        width: 100%;
        padding: 10px 0;
    }

    .hero-section {
        padding: 4rem 5% 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .school-card, .feature-item, .info-card {
        padding: 2rem;
    }

    .instructions-box {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
