/* About page: hero text sizing differs from the home page hero */
.title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #09235c;
}

.subtitle {
    font-size: 20px;
    color: #333;
    margin-top: 15px;
    line-height: 1.6;
}

.mission-icon {
    flex-shrink: 0;
}

.right-section {
    padding: 40px;
}

.right-section img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
}

.years-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 170px;
    padding: 20px;
    background: rgba(8, 56, 75, .95);
    color: #fff;
    border-radius: 20px;
    text-align: center;
    z-index: 1050;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .35);
}

.years-badge h4 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffc107;
}

.years-badge p {
    margin-top: 5px;
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .years-badge {
        width: 60%;
        right: 5%;
        left: 5%;
        bottom: 10px;
        padding: 12px;
    }

    .years-badge h4 {
        font-size: 26px;
    }
}

/* Story / stats / values / trainers sections */
.section-eyebrow {
    color: #0b8b96;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #09235c;
    margin-top: 8px;
}

.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    height: 100%;
    border-top: 4px solid #0b8b96;
}

.value-card i {
    font-size: 32px;
    color: #0b8b96;
    margin-bottom: 15px;
}

.stat-block {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.stat-block h3 {
    font-size: 40px;
    font-weight: 800;
    color: #087d87;
    margin-bottom: 5px;
}

.stat-block p {
    color: #555;
    margin-bottom: 0;
    font-weight: 500;
}

.trainer-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    transition: .3s;
}

.trainer-card:hover {
    transform: translateY(-5px);
}

.trainer-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.trainer-info {
    padding: 18px;
    text-align: center;
}

.trainer-info h5 {
    margin-bottom: 2px;
    font-weight: 700;
    color: #0c1d4f;
}

.trainer-info span {
    color: #0b8b96;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .title {
        font-size: 38px;
    }

    .right-section {
        min-height: 400px;
    }

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