.page-support {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

/* Hero Section */
.page-support__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-support__hero-content {
    max-width: 800px;
}

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    /* No fixed font-size for H1, relying on responsive scaling and other properties */
}

.page-support__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Ensure button minimum width */
    min-height: 48px; /* Ensure button minimum height */
    line-height: 24px; /* Adjust line-height for vertical centering */
}

.page-support__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__cta-button--secondary {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__cta-button--secondary:hover {
    background: #0A4B2C; /* Deep Green */
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

/* Contact Methods */
.page-support__contact-methods {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.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: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-support__method-icon {
    width: 100%; /* Occupy card width */
    height: auto;
    max-width: 250px; /* Max size for icon in card */
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
    object-fit: contain; /* Ensure image fits well */
    border-radius: 5px;
}

.page-support__card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-support__card-text {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow and push button down */
}

.page-support__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure button min width */
    min-height: 40px; /* Ensure button min height */
    line-height: 20px;
}

.page-support__card-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 40px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.page-support__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    width: 100%;
    background-color: #0A4B2C; /* Deep Green, slightly darker for contrast */
    color: #F2FFF6; /* Text Main */
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #1E3A2A; /* Divider, slightly darker */
}

.page-support__faq-question:focus {
    outline: 2px solid #57E38D; /* Glow */
    outline-offset: -2px;
}

.page-support__faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.page-support__faq-toggle::before,
.page-support__faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #F2FFF6; /* Text Main */
    transition: transform 0.3s ease;
}

.page-support__faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.page-support__faq-toggle::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.page-support__faq-question[aria-expanded="true"] .page-support__faq-toggle::after {
    transform: rotate(90deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    color: #A7D9B8; /* Text Secondary */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-answer[aria-hidden="false"] {
    max-height: 500px; /* Arbitrary large value for expansion */
    padding: 20px 25px;
}

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

.page-support__faq-answer a {
    color: #2AD16F; /* Button top color for links */
    text-decoration: underline;
}

.page-support__faq-answer a:hover {
    color: #57E38D; /* Glow */
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
    padding: 40px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 30px 15px;
    }

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

    .page-support__description {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }

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

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

    .page-support__method-card {
        padding: 20px;
    }

    .page-support__method-icon {
        max-width: 200px;
        min-width: 150px; /* Adjust min-width for mobile */
        min-height: 150px; /* Adjust min-height for mobile */
    }

    .page-support__card-title {
        font-size: 1.3em;
    }

    .page-support__faq-section {
        padding: 30px 15px 50px;
    }

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

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

    /* Mobile content area image anti-overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__main-title {
        font-size: 1.5em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__cta-button,
    .page-support__card-button {
        width: 100%;
        padding: 10px 15px;
    }
}