/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Header styling */
header {
    background-color: rgba(255, 255, 255, 0.8);
    color: #003366;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000; /* Ensure the header is above other elements */
}

.logo img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #003366;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

/* Hamburger Menu */
nav .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

nav .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #003366;
    margin: 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f5f5f5;
        z-index: 1001;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav .hamburger {
        display: flex;
    }
}

/* Hero Section for Affiliates Page */
.hero-affiliates {
    background-image: url('affiliate.png'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-affiliates::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-affiliates h1 {
    font-size: 48px;
    margin: 0;
    z-index: 1;
    position: relative;
}

.hero-affiliates p {
    font-size: 20px;
    z-index: 1;
    position: relative;
}

/* Affiliate Clubs Section */
.affiliate-clubs {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.club {
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.club h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 10px;
}

.club p {
    font-size: 16px;
    color: #666;
}

/* Footer Section */
footer {
    background-color: #FAEBD7;
    color: #003366;
    padding: 20px;
    text-align: center;
}

footer .footer-content {
    margin-bottom: 20px;
}

footer .footer-content p {
    margin: 5px 0;
}

footer .social-media a {
    margin: 0 10px;
}

footer .footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 10px;
    font-size: 14px;
}
aa