/* sports.css */
.page-sports {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    background-color: #2F6BFF; /* fallback for hero section background */
    color: #FFFFFF;
    text-align: center;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-sports__hero-content {
    padding: 40px 20px;
    max-width: 900px;
}

.page-sports__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    /* Use clamp for responsive font size, avoiding overly large fixed values */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-sports__description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #D6E2FF;
}

.page-sports__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-sports__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-sports__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

.page-sports__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-sports__btn--secondary {
    background-color: transparent;
    color: #6FA3FF;
    border: 2px solid #6FA3FF;
}

.page-sports__btn--secondary:hover {
    background-color: #6FA3FF;
    color: #FFFFFF;
}

.page-sports__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-sports__intro-section,
.page-sports__features-section,
.page-sports__faq-section {
    padding: 60px 0;
}

.page-sports__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-sports__feature-icon {
    width: 100%; /* Occupy card width */
    height: auto;
    max-width: 400px; /* Max width for feature images, ensuring they are not small icons */
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px;
}

.page-sports__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-sports__card-text {
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-sports__cta-banner {
    background-color: #2F6BFF;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-sports__banner-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-sports__banner-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #D6E2FF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__btn--large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.page-sports__faq-list {
    margin-top: 40px;
}

.page-sports__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
}

.page-sports__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-sports__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-sports__faq-answer a {
    color: #2F6BFF;
    text-decoration: none;
}

.page-sports__faq-answer a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-sports__container {
        padding: 15px;
    }

    .page-sports__hero-content {
        padding: 30px 15px;
    }

    .page-sports__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-sports__description {
        font-size: 1rem;
    }

    .page-sports__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-sports__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-sports__intro-section,
    .page-sports__features-section,
    .page-sports__faq-section {
        padding: 40px 0;
    }

    .page-sports__features-grid {
        grid-template-columns: 1fr;
    }

    .page-sports__feature-card {
        padding: 25px;
    }

    .page-sports__cta-banner {
        padding: 60px 15px;
    }

    .page-sports__banner-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-sports__banner-text {
        font-size: 1rem;
    }

    .page-sports__btn--large {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .page-sports__faq-question {
        font-size: 1.1rem;
    }

    /* Ensure all images in content area are responsive and not smaller than 200px */
    .page-sports img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-sports__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-sports__main-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }
    .page-sports__section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }
    .page-sports__banner-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-sports__btn {
        min-width: unset;
    }
}