.page-support {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #FFFFFF; /* Default background, can be overridden by shared or specific sections */
    color: #333333; /* Default text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Ensure left/right padding for mobile */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #26A9E0; /* Main color as background */
    padding-bottom: 30px; /* Space below content */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 500px; /* Prevent image from being too tall on desktop */
}

.page-support__hero-content {
    text-align: center;
    padding: 20px 15px;
    color: #FFFFFF;
}

.page-support__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* H1 clamp font size */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__description {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover {
    background-color: #d16b06;
}

/* General Section Styling */
.page-support__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #26A9E0; /* Main brand color for H2 */
}

/* Benefits Section */
.page-support__benefits-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.page-support__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-support__benefit-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__benefit-card:hover {
    transform: translateY(-5px);
}

.page-support__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block; /* Ensure images are block level */
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px; /* Enforce min-size for content images */
    object-fit: cover;
    filter: none; /* No filter */
}

.page-support__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-support__card-description {
    font-size: 0.95rem;
    color: #555555;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 40px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 30px auto 40px auto;
    text-align: left;
}

.page-support__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #26A9E0; /* Accent color for left border */
}

.page-support__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    cursor: pointer; /* Implies expand/collapse functionality, even if not implemented in JS */
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #555555;
}

.page-support__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px; /* Enforce min-size for content images */
    object-fit: cover;
    filter: none; /* No filter */
}

/* Contact Section */
.page-support__contact-section {
    padding: 40px 0;
    background-color: #26A9E0; /* Main color as background */
    color: #FFFFFF;
}

.page-support__contact-section .page-support__description {
    color: #FFFFFF;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px); /* Optional subtle blur */
}

.page-support__contact-card .page-support__card-title {
    color: #FFFFFF;
}

.page-support__contact-card .page-support__card-description {
    color: #e0e0e0;
}

.page-support__contact-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for contact buttons */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__contact-button:hover {
    background-color: #d16b06;
}

.page-support__contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px; /* Enforce min-size for content images */
    object-fit: cover;
    filter: none; /* No filter */
}

/* Responsible Gambling Section */
.page-support__responsible-gambling-section {
    padding: 40px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-support__responsible-gambling-link {
    display: inline-block;
    color: #26A9E0;
    text-decoration: underline;
    margin-top: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-support__responsible-gambling-link:hover {
    color: #1a7fb8;
}

.page-support__responsible-gambling-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    min-width: 200px; /* Enforce min-size for content images */
    min-height: 200px; /* Enforce min-size for content images */
    object-fit: cover;
    filter: none; /* No filter */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support {
        padding-top: 8px; /* Small top padding for mobile */
    }

    .page-support__hero-image {
        max-height: 300px; /* Adjust hero image height for smaller screens */
    }

    .page-support__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-support__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .page-support__benefits-grid,
    .page-support__contact-methods {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }

    .page-support__benefit-card img,
    .page-support__faq-image,
    .page-support__contact-image,
    .page-support__responsible-gambling-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
}

/* Ensure no content area image is smaller than 200px */
.page-support img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio */
}

/* Specific rule for mobile images to prevent overflow */
@media (max-width: 768px) {
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}