.page-support {
    color: #333333; /* Deep dark grey for body text, suitable for light background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    min-height: 500px;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    border-radius: 10px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFB300; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-support__hero-button, .page-support__cta-button, .page-support__contact-button, .page-support__guide-button, .page-support__responsible-gambling-button {
    display: inline-block;
    background-color: #E44D26; /* Primary color for buttons */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-support__hero-button:hover, .page-support__cta-button:hover, .page-support__contact-button:hover, .page-support__guide-button:hover, .page-support__responsible-gambling-button:hover {
    background-color: #FFB300; /* Auxiliary color on hover */
    transform: translateY(-2px);
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #E44D26; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFB300;
    padding-bottom: 10px;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #E44D26; /* Primary color for FAQ questions */
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    font-size: 1em;
    color: #666666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-support__faq-answer.active {
    max-height: 1000px; /* Arbitrary large value to allow content to expand */
}

.page-support__faq-answer p {
    margin-bottom: 10px;
}

.page-support__faq-answer p:last-child {
    margin-bottom: 0;
}

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

.page-support__guide-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__guide-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.page-support__guide-card h3 {
    font-size: 1.3em;
    margin: 20px 15px 10px;
}

.page-support__guide-card h3 a {
    color: #E44D26; /* Primary color for guide titles */
    text-decoration: none;
}

.page-support__guide-card h3 a:hover {
    text-decoration: underline;
}

.page-support__guide-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px;
}

.page-support__guide-button {
    margin-bottom: 20px;
}

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

.page-support__contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__contact-type {
    font-size: 1.5em;
    color: #E44D26; /* Primary color for contact types */
    margin-bottom: 10px;
}

.page-support__contact-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-support__responsible-gambling-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.page-support__responsible-gambling-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__cta-section {
    background-color: #E44D26; /* Primary color for CTA background */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFB300; /* Gold for CTA title */
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__faq-grid, .page-support__guide-grid, .page-support__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-support__cta-title {
        font-size: 2em;
    }

    .page-support__cta-description {
        font-size: 1em;
    }

    .page-support__hero-image, .page-support__faq-item img, .page-support__guide-image, .page-support__contact-icon, .page-support__responsible-gambling-image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content images are not smaller than 200px on mobile */
    .page-support img {
        min-width: 200px;
        min-height: 200px;
        width: auto;
        height: auto;
    }

    .page-support__guide-image {
        height: 200px; /* Maintain fixed height for visual consistency, but ensure max-width: 100% */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-support__hero-section {
        padding: 40px 15px;
    }

    .page-support__container {
        padding: 20px 15px;
    }

    .page-support__hero-title {
        font-size: 1.8em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__hero-button, .page-support__cta-button, .page-support__contact-button, .page-support__guide-button, .page-support__responsible-gambling-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}