.page-sports {
    color: #ffffff; /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Fixed header offset */
.page-content.page-sports {
    padding-top: var(--header-offset, 120px);
}

/* General Section Styling */
.page-sports__section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-sports__section--dark {
    background-color: #0A2463; /* Primary color as background */
    color: #ffffff;
}

.page-sports__section--light {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter for contrast */
    color: #ffffff;
}

.page-sports__heading {
    font-size: 36px;
    color: #E34234; /* Secondary color for main headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-sports__sub-heading {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-sports__paragraph {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-sports__paragraph--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-sports__list--ordered {
    list-style: decimal;
    padding-left: 20px;
}

.page-sports__list-item {
    font-size: 17px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #f0f0f0;
}

.page-sports__list:not(.page-sports__list--ordered) .page-sports__list-item::before {
    content: '✔️'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #E34234; /* Secondary color for checkmark */
}

/* Buttons */
.page-sports__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__button--primary {
    background-color: #E34234; /* Secondary color */
    color: #ffffff;
    border: 2px solid #E34234;
}

.page-sports__button--primary:hover {
    background-color: #ff5c47;
    border-color: #ff5c47;
    transform: translateY(-2px);
}

.page-sports__button--secondary {
    background-color: transparent;
    color: #E34234;
    border: 2px solid #E34234;
}

.page-sports__button--secondary:hover {
    background-color: #E34234;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Image styling */
.page-sports img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Hero Section */
.page-sports__hero-section {
    background: linear-gradient(135deg, #0A2463, #E34234);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-sports__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-sports__hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffd700; /* Gold for emphasis */
}

.page-sports__hero-description {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-sports__hero-image-wrapper {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General content grid layout */
.page-sports__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-sports__content-grid--reverse .page-sports__content-text {
    order: 2;
}

.page-sports__content-grid--reverse .page-sports__content-image {
    order: 1;
}

.page-sports__content-text {
    padding: 20px;
}

.page-sports__content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* FAQ Section */
.page-sports__faq-section {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter for contrast */
    padding: 60px 20px;
}

.page-sports__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-sports__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08); /* Darker card background for contrast */
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #0A2463; /* Primary color for question background */
    border: 1px solid #0A2463;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: #ffffff;
}

.page-sports__faq-question:hover {
    background-color: #1a3a73; /* Slightly lighter primary on hover */
    border-color: #1a3a73;
}

.page-sports__faq-question:active {
    background-color: #051a4a;
}

.page-sports__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #ffffff;
}

.page-sports__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #E34234; /* Secondary color for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
    color: #ffd700; /* Gold for active toggle */
    transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-sports__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #f0f0f0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
    border-radius: 0 0 5px 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports__heading {
        font-size: 32px;
    }

    .page-sports__sub-heading {
        font-size: 24px;
    }

    .page-sports__paragraph {
        font-size: 17px;
    }

    .page-sports__list-item {
        font-size: 16px;
    }

    .page-sports__hero-title {
        font-size: 40px;
    }

    .page-sports__hero-description {
        font-size: 20px;
    }

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

    .page-sports__content-grid--reverse .page-sports__content-text {
        order: unset;
    }

    .page-sports__content-grid--reverse .page-sports__content-image {
        order: unset;
    }
}

@media (max-width: 768px) {
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-sports__section,
    .page-sports__hero-section {
        padding: 40px 15px;
    }

    .page-sports__section,
    .page-sports__faq-section,
    .page-sports__content-grid,
    .page-sports__hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-sports__sub-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .page-sports__paragraph {
        font-size: 16px;
    }

    .page-sports__list-item {
        font-size: 15px;
    }

    .page-sports__hero-title {
        font-size: 32px;
    }

    .page-sports__hero-description {
        font-size: 18px;
    }

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

    .page-sports__button {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
        margin: 0; /* Remove horizontal margin */
    }

    .page-sports__content-grid {
        gap: 30px;
    }

    .page-sports__content-text {
        padding: 0;
    }

    .page-sports__faq-question {
        padding: 15px;
    }

    .page-sports__faq-question h3 {
        font-size: 16px;
    }

    .page-sports__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }

    .page-sports__faq-answer {
        padding: 0 15px;
    }

    .page-sports__faq-item.active .page-sports__faq-answer {
        padding: 15px !important;
    }
}