.page-support {
    color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #000000; /* Dark background for hero section */
}

.page-support__hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px; /* Constrain hero content width */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim image for text readability */
    z-index: 1;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    color: #FFFFFF;
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-support__cta-button--primary {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-support__cta-button--secondary {
    background-color: #000000;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}

.page-support__cta-button--secondary:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-2px);
}

.page-support__cta-button--tertiary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

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

.page-support__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-support__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.page-support__faq-section,
.page-support__contact-options-section,
.page-support__guides-section,
.page-support__responsible-gaming-section,
.page-support__additional-resources-section,
.page-support__feedback-section,
.page-support__login-register-cta {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-support__faq-section {
    background-color: #F8F8F8;
}

.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-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__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-support__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

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

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

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-support__contact-icon {
    width: 250px; /* Minimum size for content images */
    height: 187px; /* Maintain aspect ratio (4:3) for 250px width */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-support__contact-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-support__contact-description {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-support__card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-support__card-button:hover {
    background-color: #FFD700;
}

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

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

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

.page-support__guide-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-support__guide-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3em;
    color: #000000;
    font-weight: 600;
}

.page-support__guide-card h3 a {
    text-decoration: none;
    color: #000000;
}

.page-support__guide-card h3 a:hover {
    color: #FCBC45;
}

.page-support__guide-description {
    padding: 0 20px 20px;
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
}

.page-support__card-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: #FCBC45;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-support__card-link:hover {
    color: #000000;
}

.page-support__responsible-gaming-section {
    background-color: #F0F0F0;
    text-align: center;
}

.page-support__responsible-gaming-section .page-support__section-intro {
    margin-bottom: 30px;
}

.page-support__additional-resources-section {
    background-color: #FFFFFF;
}

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

.page-support__resource-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-support__resource-title {
    font-size: 1.25em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-support__resource-description {
    font-size: 0.9em;
    color: #666666;
    line-height: 1.5;
}

.page-support__feedback-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-support__feedback-section .page-support__section-title {
    color: #FCBC45;
}

.page-support__feedback-section .page-support__section-intro {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-support__login-register-cta {
    background-color: #F8F8F8;
    text-align: center;
}

.page-support__login-register-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-support__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

@media (max-width: 768px) {
    .page-support__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }

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

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

    .page-support__cta-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__container {
        padding: 30px 15px;
    }

    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__guides-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__faq-item,
    .page-support__contact-card,
    .page-support__guide-card,
    .page-support__resource-card {
        padding: 20px;
    }

    .page-support__faq-question {
        font-size: 1.2em;
    }

    .page-support__faq-answer {
        font-size: 0.9em;
    }

    .page-support__contact-icon,
    .page-support__guide-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and don't overflow */
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 150px; /* Maintain aspect ratio for min-width */
    }

    .page-support__cta-group,
    .page-support__button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__contact-title {
        font-size: 1.3em;
    }
    .page-support__guide-card h3 {
        font-size: 1.2em;
    }
    .page-support__resource-title {
        font-size: 1.1em;
    }
}