:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --dark-bg-text: #ffffff;
    --button-login-color: #EA7C07;
    --black-color: #000000;
}

/* Base styles for the page content */
.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color); /* Body background is default white, so use dark text. */
}

/* Sections */
.page-sports__section {
    padding: 60px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.page-sports__section:nth-of-type(even) {
    background-color: var(--light-bg);
}

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

.page-sports__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.page-sports__section-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Desktop padding */
    padding-bottom: 60px; /* Adjust padding-bottom if needed */
    background: linear-gradient(135deg, var(--primary-color) 0%, #36baf0 100%); /* Lighter blue gradient */
    color: var(--dark-bg-text);
}

.page-sports__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}