.about-intro {
    padding: 100px 0;
}

.about-content {
    padding-right: 50px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    margin-top: 15px;
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--off-white);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: var(--dark);
}

.feature-item:hover {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 400px;
    background-color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-main i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.2);
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--white);
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 30px;
}

.about-stats-card .stat-item {
    text-align: center;
}

.about-stats-card .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    display: block;
}

.about-stats-card .stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--off-white);
}

.mv-card {
    background-color: var(--white);
    padding: 50px;
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mv-card.mission .mv-icon {
    background-color: var(--primary-teal);
    color: var(--white);
}

.mv-card.vision .mv-icon {
    background-color: var(--accent-red);
    color: var(--white);
}

.mv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.teams-section {
    padding: 100px 0;
}

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

.team-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-emblem {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 20px;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.team-stadium {
    font-size: 13px;
    color: var(--gray);
}

.team-stadium i {
    color: var(--accent-red);
    margin-right: 5px;
}

.team-founded {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background-color: var(--off-white);
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.values-section {
    padding: 100px 0;
    background-color: var(--dark);
}

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 25px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.leadership-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

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

.leader-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.leader-photo {
    width: 120px;
    height: 120px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gray);
    margin: 0 auto 25px;
    border: 3px solid var(--primary-teal);
}

.leader-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.leader-role {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
}

/* Board Callout */
.board-callout-section {
    padding: 80px 0;
    background: var(--off-white);
}

.board-callout {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.board-callout:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.board-callout-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, var(--primary-teal), #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 42px;
    color: var(--white);
}

.board-callout-text {
    flex: 1;
}

.board-callout-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: none;
}

.board-callout-text p {
    font-size: 16px;
    color: #6b7280 !important;
    margin: 0;
    line-height: 1.6;
}

.board-callout .btn-primary {
    background: var(--primary-teal);
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.board-callout .btn-primary:hover {
    background: #0d9488;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .board-callout-section {
        padding: 60px 0;
    }
    .board-callout {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 25px;
    }
    .board-callout-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 32px;
    }
    .board-callout-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-stats-card {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }
}
