/* support.css */

.page-support {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #7A0E0E; /* Deep Red */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/5; /* For 1920x600 */
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 20px; /* Space between image and content */
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-support__hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any subtle background elements if any */
}

.page-support__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main */
}

.page-support__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}

/* General Section Styling */
.page-support__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F4D34D; /* Gold */
}

.page-support__section-description {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: #C91F17; /* Primary */
}

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

.page-support__method-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-support__card-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
    color: #FFF5E1; /* Text Main */
}

/* Buttons */
.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for button text for contrast */
    border: none;
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-support__button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.page-support__button--outline {
    background: transparent;
    border: 2px solid #F2B544; /* Border */
    color: #F4D34D; /* Gold */
}

.page-support__button--outline:hover {
    background: #F2B544; /* Border */
    color: #7A0E0E; /* Deep Red */
}

.page-support__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red */
}

.page-support__button--secondary {
    background-color: #E53935; /* Secondary color */
    color: #FFF5E1; /* Text Main */
}

.page-support__button--secondary:hover {
    background-color: #C91F17; /* Primary color */
}


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

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #D32F2F; /* Card BG */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #F2B544; /* Border */
}

.page-support__faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFCC66; /* Glow */
}

.page-support__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
}

.page-support__view-all-faq {
    text-align: center;
    margin-top: 40px;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    padding: 60px 0;
    background-color: #C91F17; /* Primary */
    text-align: center;
}

/* Final CTA Section */
.page-support__final-cta {
    padding: 60px 0;
    background-color: #7A0E0E; /* Deep Red */
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-support__container {
        padding: 15px;
    }

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

    .page-support__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .page-support__section-description {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: 30px;
    }

    .page-support__methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__faq-question {
        font-size: 1.1rem;
    }
    
    .page-support__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 549px) {
    .page-support__hero-section {
        padding-bottom: 30px;
    }

    .page-support__main-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }

    .page-support__hero-description {
        font-size: clamp(0.8rem, 4vw, 1rem);
    }

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

    .page-support__section-description {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        margin-bottom: 25px;
    }

    .page-support__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-support__faq-question {
        font-size: 1rem;
    }

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

/* Enforce content area image minimum size for all images within .page-support */
.page-support img {
    min-width: 200px;
    min-height: 200px;
    /* For responsiveness, ensure max-width and height auto in mobile media queries */
}

@media (max-width: 768px) {
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}