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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1616;
    background-color: #FFFFFF;
}






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



.hero {
    position: relative;
    min-height: 550px;
    height: auto;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 22, 22, 0.9) 0%, rgba(26, 22, 22, 0.7) 50%, rgba(26, 22, 22, 0.3) 100%);
}

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

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #F9A825 0%, #F57F17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 32px;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}



.highlight-text {
    color: #F9A825;
    font-weight: 600;
}


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

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

.programs-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.08em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* ── Individual card ── */
.prog-card {
    background-color: #242424;
    border: 1.5px solid #FF5722;
    border-radius: 12px;
    padding: var(--space-card-v) var(--space-card-h);
}

.prog-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.prog-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.prog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FF5722;
}

/* ── Bullet lists ── */
.prog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prog-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}

/* Square bullets (card 1) */
.prog-list--square li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    background-color: #FF5722;
    border-radius: 1px;
}

/* Circle bullets (card 2) */
.prog-list--circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border: 1.5px solid #FF5722;
    border-radius: 50%;
    background: transparent;
}


.program-card2 {
    background-color: #1C1C1C;
    padding: 48px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    border: 1px solid #2a2a2a;
    min-height: 250px;
}

.program-card1 {
    background-color: #1C1C1C;
    padding: 48px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    border: 1px solid #2a2a2a;
    min-height: 250px;
}

.program-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FF5722;
    margin: 0 0 20px 0;
    text-align: center;
    padding-left: 0;
    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;
}


.pathway-section {
    padding: 50px 0;
    background-color: #FFFFFF;
}

.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;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #FF5722;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    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: #1A1616;
    margin-bottom: 6px;
}

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

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

@media (max-width: 1024px) {



    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

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

    .hero {
        min-height: 400px;
        height: auto;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .context-cards {
        grid-template-columns: 1fr;
    }

    .programs-section {
        padding: 60px 8px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

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

    .pathway-arrow {
        transform: rotate(90deg);
    }






}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }
}



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

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

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

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

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

.why-football-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FF5722;

    margin: 0 0 20px 0;
    line-height: 1.2;
}

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

.football-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;
}

.football-context {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 420px;
}

.context-box {
    background-color: #1A1616;

    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;
}


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

    .why-football-title {
        font-size: 32px;
    }

    .football-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-football-title {
        font-size: 28px;
    }

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



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

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

.section-heading-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FF5722;
    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(3, 1fr);
    gap: 18px;
}

.impact-stat-box {
    background-color: #1A1616;
    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) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {

    .why-football-section,
    .impact-goal-section {
        padding: 80px 20px;
    }

    .programs-section {
        padding: 60px 0;
    }

    .programs-section .container {
        padding: 0 16px;
    }

    .program-card1,
    .program-card2 {
        padding: 24px;
    }

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

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