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

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

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #2F6BFF; /* Primary color for hero background */
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-sports__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and text */
}

.page-sports__hero-content {
    max-width: 900px;
    padding: 0 20px 40px;
    color: #FFFFFF; /* White text on blue background */
}

.page-sports__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Example clamp for h1 */
}

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

.page-sports__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-sports__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Main text color */
}

.page-sports__about-section,
.page-sports__features-section,
.page-sports__cta-section,
.page-sports__faq-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

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

/* Features Grid */
.page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-sports__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-sports__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-sports__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    /* Ensure image display size is not less than 200px */
    min-width: 200px;
    min-height: 200px;
}

.page-sports__feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-sports__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Main text color */
}

/* CTA Section */
.page-sports__cta-section {
    text-align: center;
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    padding: 80px 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px; /* Match container width */
}

.page-sports__cta-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-sports__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-sports__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-sports__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* FAQ Section */
.page-sports__faq-list {
    margin-top: 30px;
}

.page-sports__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-sports__faq-answer a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-sports__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-sports__section-title {
        font-size: 2rem;
    }

    .page-sports__cta-title {
        font-size: 1.8rem;
    }
}

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

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

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

    .page-sports__hero-description {
        font-size: 1rem;
    }

    .page-sports__hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-sports__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-sports__paragraph {
        font-size: 0.95rem;
    }

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

    .page-sports__feature-image {
        height: auto; /* Allow image to scale */
        max-height: 250px;
    }

    .page-sports__feature-title {
        font-size: 1.3rem;
    }

    .page-sports__feature-description {
        font-size: 0.95rem;
    }

    .page-sports__cta-section {
        padding: 60px 15px;
        margin: 30px auto;
    }

    .page-sports__cta-title {
        font-size: 1.6rem;
    }

    .page-sports__cta-description {
        font-size: 1rem;
    }

    .page-sports__cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

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

    .page-sports__faq-answer {
        font-size: 0.95rem;
    }

    /* Mobile content image overflow prevention */
    .page-sports img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-sports__hero-description {
        font-size: 0.9rem;
    }

    .page-sports__hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-sports__section-title {
        font-size: 1.5rem;
    }

    .page-sports__cta-title {
        font-size: 1.4rem;
    }
}