.athletics-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.athletics-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/athletics-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.athletics-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.athletics-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.athletics-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.athletics-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.athletics-hero-buttons {
    display: flex;
    gap: 16px;
}


.why-athletics-section {
    background-color: #FFFFFF;
    padding: var(--space-section-v) var(--space-section-h);
}

.why-athletics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-athletics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.athletics-left-column {
    display: flex;
    flex-direction: column;
}

.why-athletics-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0 0 8px 0;
}

.why-athletics-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #F25F25;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.why-athletics-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.athletics-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}



.benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.athletics-context {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 420px;
}

.context-box {
    background-color: #212121;
    padding: 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.context-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: #FFC107;
}

.context-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    text-align: center;
}

.context-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}


.athletics-programs-section {
    padding: var(--space-section-v) var(--space-section-h);
    background-color: #1a1a1a;
}

.athletics-programs-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-items: center;
    width: 100%;
}

.program-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.program-features-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    position: relative;
}

.program-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.6;
}


.athlete-pathway-section {
    background-color: #FFFFFF;
    padding: var(--space-section-v) var(--space-section-h);
}

.athlete-pathway-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pathway-heading {
    margin-bottom: 32px;
}

.pathway-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #F25F25;
    margin: 0 0 8px 0;
}

.pathway-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.pathway-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.pathway-step {
    text-align: center;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #F25F25;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}

.pathway-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.step-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    font-weight: 600;
}

.pathway-arrow {
    font-size: 24px;
    color: #F25F25;
    font-weight: 700;
}


.impact-goal-section {
    background-color: #E8E8E8;
    padding: var(--space-section-v) var(--space-section-h);
    border-bottom: 4px solid #F25F25;
}

.impact-goal-container {
    max-width: 780px;
    margin: 0 auto;
}

.section-heading-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #F25F25;
    margin: 0 0 48px 0;
    text-align: center;
}

.impact-goal-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0 0 8px 0;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.impact-stat-box {
    background-color: #212121;
    padding: var(--space-card-v) var(--space-card-h);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #FFC107;
    margin: 0 0 12px 0;
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}






@media (max-width: 1024px) {
    .why-athletics-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 1000px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .athletics-hero {
        min-height: 400px;
        height: auto;
    }

    .athletics-hero-title {
        font-size: 32px;
    }

    .athletics-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .athletics-hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        margin-bottom: 20px;
    }


    .pathway-steps {
        flex-direction: column;
    }

    .pathway-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .pathway-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}

@media (max-width: 480px) {

    .why-athletics-section,
    .athlete-pathway-section,
    .impact-goal-section {
        padding: 60px 20px;
    }


    .athletics-programs-section {
        padding: 60px var(--space-section-h);
    }

    .section-heading-orange,
    .section-heading-white {
        font-size: 24px;
    }

    .athletics-hero-content {
        padding: 0 20px;
    }

    .impact-stat-box {
        padding: 24px;
    }

    .stat-number {
        font-size: 48px;
    }



}

a {
    color: inherit;
    text-decoration: none;
}