.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden; /* To contain the image if it overflows slightly */
    background-color: #1A202C; /* Ensure dark background */
    background-image: none !important; /* Explicitly ensure no background image */
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background effect */
    z-index: 0;
    filter: none !important; /* Explicitly ensure no filter */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-support__hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #fff;
}

.page-support__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-support__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__hero-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #ccc;
}

/* Why Choose Us Section */
.page-support__why-choose-us-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-support__feature-card {
    background-color: #2a3342; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 250px; /* Ensure cards have some height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-support__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__feature-description {
    color: #e0e0e0;
    font-size: 1em;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-support__faq-accordion {
    margin-top: 40px;
    border: 1px solid #3a475a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-support__faq-item {
    border-bottom: 1px solid #3a475a;
}

.page-support__faq-item:last-child {
    border-bottom: none;
}

.page-support__faq-question {
    background-color: #2a3342;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    background-color: #1A202C;
    color: #e0e0e0;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    font-size: 1.1em;
}

.page-support__faq-answer.open {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

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

.page-support__inline-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-support__inline-link:hover {
    color: #e6c200;
}

.page-support__faq-image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    width: 800px; /* Specific width for desktop */
    height: 600px; /* Specific height for desktop */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    filter: none !important; /* Explicitly ensure no filter */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* Guides Section */
.page-support__guides-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-support__guide-card {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-support__guide-title {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-support__guide-link {
    color: #FFD700;
    text-decoration: none;
}

.page-support__guide-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-support__guide-description {
    color: #e0e0e0;
    font-size: 1em;
}

.page-support__guides-image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    width: 800px; /* Specific width for desktop */
    height: 600px; /* Specific height for desktop */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    filter: none !important; /* Explicitly ensure no filter */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* Technical Support Section */
.page-support__technical-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-support__tech-card {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.page-support__tech-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__tech-list {
    list-style: disc;
    margin-left: 20px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-support__tech-list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-support__tech-tip {
    font-style: italic;
    color: #bbb;
    margin-top: 20px;
    font-size: 0.95em;
}

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

.page-support__tech-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* Pushes button to bottom */
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-support__tech-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__tech-button--primary {
    background-color: #FFD700; /* Primary gold button */
    color: #1A202C;
    margin-top: 15px;
}

.page-support__tech-button--primary:hover {
    background-color: #e6c200;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-support__responsible-card {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__responsible-subtitle {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

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

.page-support__responsible-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.95em;
}

.page-support__responsible-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__main-responsible-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__main-responsible-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-support__contact-card {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__contact-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

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

.page-support__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-support__contact-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__contact-image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    width: 800px; /* Specific width for desktop */
    height: 600px; /* Specific height for desktop */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    filter: none !important; /* Explicitly ensure no filter */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* CTA Section */
.page-support__cta-section {
    padding: 80px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-support__cta-container {
    max-width: 900px;
}

.page-support__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-support__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-support__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-support__cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
}

.page-support__cta-button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-support__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support__cta-button {
    background-color: transparent;
    color: #FFD700;
}

.page-support__cta-button:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-support__faq-image,
    .page-support__guides-image,
    .page-support__contact-image {
        width: 100%; /* Adjust for smaller screens */
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 60px 20px;
    }

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

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

    .page-support__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-support__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-support__features-grid,
    .page-support__guides-grid,
    .page-support__tech-content,
    .page-support__responsible-content,
    .page-support__contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__feature-card,
    .page-support__guide-card,
    .page-support__tech-card,
    .page-support__responsible-card,
    .page-support__contact-card {
        padding: 25px;
        min-height: auto;
    }

    .page-support__feature-title,
    .page-support__guide-title,
    .page-support__tech-subtitle,
    .page-support__responsible-subtitle,
    .page-support__contact-subtitle {
        font-size: 1.5em;
    }

    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer.open {
        padding: 15px 20px;
    }

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

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

    .page-support__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Mobile specific image handling to prevent overflow and ensure minimum size */
    .page-support img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }

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

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

    .page-support__cta-buttons {
        flex-direction: column;
    }
}