/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #0066CC; /* Boys and Girls Club Blue */
}

    .header .login-signup {
        --sl-color-primary: #FFFFFF;
        --sl-button-font-size-medium: 1rem;
        --sl-color-primary-hover: #cccccc;
    }

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #FFFFFF;
    color: #0066CC;
}

.hero-image {
    max-width: 50%;
    border-radius: 10px;
}

.hero-text {
    max-width: 40%;
}

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero-text sl-button {
        --sl-color-primary: #0066CC;
        --sl-color-primary-hover: #004a99;
    }

/* Info Section Styles */
.info {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

    .info h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #0066CC;
    }

    .info p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

.info-image {
    max-width: 100%;
    border-radius: 10px;
}

/* FAQ Section Styles */
.faq {
    padding: 40px 20px;
    background-color: #FFFFFF;
}

    .faq h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #0066CC;
    }

sl-details {
    margin-bottom: 20px;
    --sl-color-primary: #0066CC;
    --sl-color-primary-hover: #004a99;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0066CC;
    color: #FFFFFF;
}

    footer a {
        color: #FFD700;
        text-decoration: none;
    }

        footer a:hover {
            color: #FFFFFF;
            text-decoration: underline;
        }
