/* CSS Variables */
:root {
    --primary-green: #33943c;
    --dark-green: #19481d;
    --light-green: #63ca6d;
    --teal-accent: #139da4;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8faf9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(25, 72, 29, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --max-width: 1200px;
}

/* 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: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 148, 60, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 1rem;
    padding: 0.5rem 0;
    border: 1px solid rgba(51, 148, 60, 0.1);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.nav-dropdown-item:hover {
    background: var(--background-light);
    color: var(--primary-green);
}

.nav-dropdown-item.active {
    background: rgba(51, 148, 60, 0.1);
    color: var(--primary-green);
    font-weight: 500;
}

.nav-link.has-dropdown::after {
    display: none;
}

.nav-link.has-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.has-dropdown i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link.has-dropdown i {
    transform: rotate(180deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(99, 202, 109, 0.1) 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Learning Areas Section */
.learning-areas {
    padding: 6rem 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(51, 148, 60, 0.1);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(25, 72, 29, 0.15);
    border-color: var(--light-green);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.area-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Competition Structure */
.competition-structure {
    padding: 6rem 0;
    background: var(--background-light);
}

.structure-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--light-green), transparent);
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-date {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-green);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.footer-contact a {
    color: var(--light-green);
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--background-light);
        margin: 0;
        padding: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.active .nav-dropdown {
        max-height: 500px;
    }

    .nav-dropdown-item {
        padding: 1rem;
        text-align: center;
    }

    .nav-link.has-dropdown {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-item::after {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .area-card,
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }

/* Page-specific Styles */

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(99, 202, 109, 0.1) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.mission-section {
    padding: 6rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-info p {
    color: var(--text-light);
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow);
}

.objectives-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.15);
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.objective-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section, .capabilities-section, .organization-section {
    padding: 6rem 0;
}

.approach-section {
    background: var(--white);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
}

.approach-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.approach-header i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.approach-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.capabilities-section {
    background: var(--background-light);
}

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

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.capability-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.capability-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.organization-section {
    background: var(--white);
}

.org-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.org-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary-green);
}

/* Academics Page Styles */
.learning-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.learning-areas-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.area-detailed {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-bottom: 1px solid rgba(51, 148, 60, 0.1);
}

.area-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.area-title-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.area-title-section p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.area-content {
    padding: 2rem;
}

.area-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.topic-list {
    list-style: none;
    margin-bottom: 2rem;
}

.topic-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.topic-list li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.skills-developed {
    margin-top: 2rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.methodology-section, .assessment-section, .preparation-section {
    padding: 6rem 0;
}

.methodology-section {
    background: var(--background-light);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.methodology-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.methodology-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal-accent), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.methodology-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.assessment-section {
    background: var(--white);
}

.assessment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.assessment-type {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.assessment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.assessment-header i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.assessment-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.assessment-details {
    list-style: none;
}

.assessment-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.assessment-details li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.preparation-section {
    background: var(--background-light);
}

.preparation-content {
    max-width: 900px;
    margin: 0 auto;
}

.preparation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.preparation-timeline {
    margin-bottom: 3rem;
}

.preparation-timeline .timeline-content p {
    text-align: left;
}

.cta-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* IEnvO 2025 Page Styles */
.event-header {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-green), var(--teal-accent));
    color: var(--white);
    text-align: center;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.event-badge .year {
    font-size: 2rem;
    font-weight: 700;
}

.event-badge .edition {
    font-size: 1rem;
    opacity: 0.9;
}

.event-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.event-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.event-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1.25rem;
}

/* Competition Timeline Section */
.competition-timeline {
    padding: 6rem 0;
    background: var(--white);
}

.competition-timeline .timeline-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0;
}

.competition-timeline .timeline-entry {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.competition-timeline .timeline-entry:last-child {
    margin-bottom: 0;
}

.competition-timeline .timeline-date-box {
    min-width: 180px;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(51, 148, 60, 0.2);
}

.competition-timeline .timeline-date-box.short-format {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
}

.competition-timeline .timeline-full-date {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.competition-timeline .timeline-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.competition-timeline .timeline-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.competition-timeline .timeline-info {
    flex: 1;
    padding-top: 0.25rem;
}

.competition-timeline .timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.competition-timeline .timeline-description {
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

.competition-timeline .timeline-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.competition-timeline .timeline-badge.active-badge {
    background: var(--primary-green);
    color: var(--white);
}

.competition-timeline .timeline-badge.upcoming-badge {
    background: rgba(51, 148, 60, 0.1);
    color: var(--primary-green);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .competition-timeline .timeline-entry {
        flex-direction: column;
        gap: 1.5rem;
    }

    .competition-timeline .timeline-date-box {
        width: 100%;
        min-width: auto;
    }

    .competition-timeline .timeline-info {
        text-align: center;
    }
}

.competition-structure-detailed {
    padding: 6rem 0;
    background: var(--white);
}

.round-section {
    margin-bottom: 4rem;
    border: 2px solid rgba(51, 148, 60, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.round-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-light);
}

.round-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Exclude rounds 1 and 2 from green cycle - use neutral styling */
.round-section:nth-child(1) .round-number,
.round-section:nth-child(1) .round-date {
    background: var(--text-light);
    color: var(--white);
}

.round-section:nth-child(2) .round-number,
.round-section:nth-child(2) .round-date {
    background: var(--text-light);
    color: var(--white);
}

/* Add subtle visual indication that these rounds are different */
.round-section:nth-child(1),
.round-section:nth-child(2) {
    opacity: 0.85;
    border-color: rgba(102, 102, 102, 0.2);
    position: relative;
}

/* Add a visual badge to indicate these rounds are not in the main competition cycle */
/* Removed badges - they were appearing incorrectly */

/* Enhance visual hierarchy for active rounds (3+) */
.round-section:nth-child(n+3) {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(51, 148, 60, 0.1);
}

.round-section:nth-child(n+3) .round-header {
    background: linear-gradient(135deg, var(--background-light), rgba(99, 202, 109, 0.05));
}

/* Improved hover effects for all rounds */
.round-section {
    transition: var(--transition);
}

.round-section:hover {
    transform: translateY(-2px);
}

/* Different hover behavior for excluded rounds */
.round-section:nth-child(1):hover,
.round-section:nth-child(2):hover {
    opacity: 0.95;
    box-shadow: 0 6px 25px rgba(102, 102, 102, 0.15);
}

/* Enhanced hover for active rounds */
.round-section:nth-child(n+3):hover {
    box-shadow: 0 8px 30px rgba(51, 148, 60, 0.2);
    border-color: var(--light-green);
}

.round-info {
    flex: 1;
}

.round-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.round-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.round-date {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.round-details {
    padding: 2rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(51, 148, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.25rem;
}

.detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.detail-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.round-description {
    background: rgba(51, 148, 60, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
}

.round-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.final-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.component-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.component-header i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.component-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.component-details ul {
    list-style: none;
}

.component-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.component-details li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.eligibility-section, .registration-section, .awards-section {
    padding: 6rem 0;
}

.eligibility-section {
    background: var(--background-light);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.eligibility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.eligibility-card.eligible .card-header i {
    color: var(--primary-green);
}

.eligibility-card.not-eligible .card-header i {
    color: #e74c3c;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.eligibility-list {
    list-style: none;
}

.eligibility-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.eligible .eligibility-list li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.not-eligible .eligibility-list li::before {
    content: '✗';
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.registration-section {
    background: var(--white);
}

.registration-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.registration-deadline {
    text-align: center;
}

.deadline-alert {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #e74c3c;
}

.deadline-alert i {
    font-size: 1.5rem;
}

.deadline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.awards-section {
    background: var(--background-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.award-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.award-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.award-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.award-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #b8860b;
}

.award-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #708090;
}

.award-icon.bronze {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #8b4513;
}

.award-icon.qualification {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.award-icon.special {
    background: linear-gradient(135deg, var(--teal-accent), var(--primary-green));
}

.award-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.award-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section-2025 {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
}

.cta-content-2025 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-2025 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content-2025 p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section-2025 .btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.cta-section-2025 .btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.cta-section-2025 .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-section-2025 .btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Resources Page Styles */
.download-resources, .upcoming-resources, .study-guide, .additional-resources, .support-section {
    padding: 6rem 0;
}

.download-resources {
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(25, 72, 29, 0.15);
}

.resource-card.featured {
    border: 2px solid var(--primary-green);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--white);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.resource-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.resource-content {
    padding: 2rem;
}

.resource-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.resource-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-green);
}

.upcoming-resources {
    background: var(--background-light);
}

.upcoming-grid {
    display: flex;
    justify-content: center;
}

.upcoming-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow);
}

.upcoming-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-accent), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.upcoming-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.upcoming-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.upcoming-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.study-guide {
    background: var(--white);
}

.study-strategy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.study-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 148, 60, 0.1);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.tips-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.college-application-section {
    background: var(--background-light);
    padding: 6rem 0;
}

.application-guide {
    max-width: 900px;
    margin: 0 auto;
}

.application-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.additional-resources {
    background: var(--background-light);
}

.supplementary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.supplement-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.reading-list, .online-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reading-item, .online-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.reading-item i, .online-item i {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.reading-info h4, .online-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reading-info p, .online-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-section {
    background: var(--white);
}

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

.support-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.support-contact {
    display: flex;
    justify-content: center;
}

/* Join Page Styles */
.participation-options, .professional-opportunities, .application-process, .benefits-section, .contact-section {
    padding: 6rem 0;
}

.participation-options {
    background: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.option-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(25, 72, 29, 0.15);
}

.option-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.02);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--white);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.option-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 2rem 1rem;
    color: var(--text-dark);
}

.option-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 2rem 2rem;
}

.option-features {
    margin: 0 2rem 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.option-requirements {
    margin: 0 2rem 2rem;
    padding: 1.5rem;
    background: rgba(51, 148, 60, 0.05);
    border-radius: var(--border-radius);
}

.option-requirements h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.option-requirements ul {
    list-style: none;
}

.option-requirements li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.option-requirements li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.option-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
    justify-content: center;
}

.professional-opportunities {
    background: var(--background-light);
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.professional-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.professional-header {
    padding: 2rem;
    background: var(--background-light);
    text-align: center;
}

.professional-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal-accent), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.75rem;
}

.professional-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.professional-level {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.professional-content {
    padding: 2rem;
}

.professional-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.professional-responsibilities, .professional-qualifications {
    margin-bottom: 2rem;
}

.professional-responsibilities h4, .professional-qualifications h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.professional-responsibilities ul, .professional-qualifications ul {
    list-style: none;
}

.professional-responsibilities li, .professional-qualifications li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.professional-responsibilities li::before {
    content: '▸';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.professional-qualifications li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.application-process {
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--light-green), transparent);
}

.benefits-section {
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-section {
    background: var(--white);
}

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

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-details a, .contact-details span {
    color: var(--text-light);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-green);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .mission-grid, .study-strategy, .supplementary-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .area-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .round-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .final-components {
        grid-template-columns: 1fr;
    }

    .eligibility-grid, .professional-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .event-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* News Page Styles */
.news-section {
    padding: 6rem 0;
    background: var(--white);
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-article {
    background: var(--white);
    border: 1px solid rgba(51, 148, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}

.news-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 72, 29, 0.15);
    border-color: var(--light-green);
}

.news-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-date {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.news-updated {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.markdown-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.markdown-content h1 { font-size: 2rem; }
.markdown-content h2 { font-size: 1.75rem; }
.markdown-content h3 { font-size: 1.5rem; }
.markdown-content h4 { font-size: 1.25rem; }
.markdown-content h5 { font-size: 1.1rem; }
.markdown-content h6 { font-size: 1rem; }

.markdown-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.markdown-content strong,
.markdown-content b {
    font-weight: 600;
    color: var(--text-dark);
}

.markdown-content em,
.markdown-content i {
    font-style: italic;
}

.markdown-content del,
.markdown-content s {
    text-decoration: line-through;
    opacity: 0.7;
}

.markdown-content ul,
.markdown-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-light);
}

.markdown-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.markdown-content ul ul,
.markdown-content ol ol,
.markdown-content ul ol,
.markdown-content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.markdown-content li > p {
    margin-bottom: 0.5rem;
}

.markdown-content li > ul,
.markdown-content li > ol {
    margin-top: 0.5rem;
}

.markdown-content a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.markdown-content a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.markdown-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-style: italic;
}

.markdown-content code {
    background: var(--background-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-green);
}

.markdown-content pre {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 1rem 0;
}

.markdown-content pre code {
    background: transparent;
    padding: 0;
    color: var(--text-dark);
}

/* Tables */
.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.markdown-content table thead {
    background: var(--background-light);
}

.markdown-content table th,
.markdown-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(51, 148, 60, 0.2);
    text-align: left;
}

.markdown-content table th {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--background-light);
}

.markdown-content table td {
    color: var(--text-light);
}

.markdown-content table tbody tr:nth-child(even) {
    background: rgba(51, 148, 60, 0.03);
}

/* Horizontal Rule */
.markdown-content hr {
    border: none;
    border-top: 2px solid rgba(51, 148, 60, 0.2);
    margin: 2rem 0;
}

/* Awards Table Styles */
.awards-table {
    width: 100%;
    border-collapse: collapse;
}

.awards-table tbody tr {
    border-bottom: 1px solid rgba(51, 148, 60, 0.1);
    transition: var(--transition);
}

.awards-table tbody tr:hover {
    background: rgba(51, 148, 60, 0.05);
}

.awards-table tbody tr:last-child {
    border-bottom: none;
}

.awards-table td {
    padding: 1rem;
    color: var(--text-dark);
    vertical-align: middle;
}

.awards-table td:first-child {
    font-weight: 600;
    color: var(--primary-green);
}

.award-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #b8860b;
}

.award-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #708090;
}

.award-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #8b4513;
}

/* Registration Reminder Banner */
.registration-reminder {
    background: linear-gradient(135deg, rgba(51, 148, 60, 0.1), rgba(51, 148, 60, 0.05));
    border-left: 4px solid var(--primary-green);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(51, 148, 60, 0.1);
    transition: var(--transition);
}

.registration-reminder:hover {
    box-shadow: 0 4px 12px rgba(51, 148, 60, 0.15);
    transform: translateY(-2px);
}

.registration-reminder > div:first-child {
    flex: 1;
    min-width: 250px;
}

.registration-reminder h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.registration-reminder h3 i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.registration-reminder p {
    margin: 0.5rem 0 0 0;
    color: var(--text-light);
    line-height: 1.6;
}

.registration-reminder > div:last-child {
    flex-shrink: 0;
}

.registration-reminder .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .registration-reminder {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
    }
    
    .registration-reminder > div:first-child {
        min-width: 100%;
    }
    
    .registration-reminder > div:last-child {
        width: 100%;
    }
    
    .registration-reminder .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Country Grid Styles */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
    cursor: default;
}

.country-item:hover {
    background: rgba(51, 148, 60, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 148, 60, 0.15);
}

.country-item .country-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .country-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .country-item .country-flag {
        width: 28px;
        height: 21px;
    }
}

/* Task Lists (Checkboxes) */
.markdown-content input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.markdown-content li.task-list-item {
    list-style: none;
    padding-left: 0;
}

.markdown-content li.task-list-item input[type="checkbox"] {
    margin-left: -1.5rem;
}

/* Inline code in paragraphs */
.markdown-content p code,
.markdown-content li code,
.markdown-content td code {
    background: var(--background-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-green);
}

.news-image-wrapper {
    position: relative;
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.image-count-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pulse-tag {
    background: var(--background-light);
    color: var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(51, 148, 60, 0.2);
}

/* Loading and Error States */
.loading-news,
.error-news {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--background-light);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-news p,
.error-news p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.error-news .error-details {
    font-size: 0.9rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    opacity: 1;
}

.news-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
    position: relative;
}

.news-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(51, 148, 60, 0.1);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.news-modal-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.news-modal-close:hover {
    background: var(--background-light);
    color: var(--text-dark);
}

.news-modal-body {
    padding: 2rem;
}

.news-modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.news-modal-images img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-article {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .news-image-wrapper {
        width: 100%;
        min-width: auto;
    }

    .news-image-wrapper img {
        height: auto;
    }

    .news-modal.active {
        padding: 1rem;
    }

    .news-modal-content {
        max-height: 95vh;
    }

    .news-modal-header,
    .news-modal-body {
        padding: 1.5rem;
    }

    .news-modal-images {
        grid-template-columns: 1fr;
    }
}