.page-support {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif; /* Roboto-like */
}

/* Hero Section */
.page-support__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden; /* For image */
    position: relative;
}

.page-support__hero-image-wrapper {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

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

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4); /* Glow */
}

.page-support__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

/* Contact Methods Section */
.page-support__contact-methods,
.page-support__faq-section,
.page-support__responsible-gambling,
.page-support__cta-banner {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__section-title {
    font-size: 2.2em;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-support__method-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

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

.page-support__method-icon {
    width: 100%; /* Ensure it's not too small */
    max-width: 300px; /* Example, adjust based on content */
    height: auto;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Adjust to maintain aspect ratio with min-width */
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-support__method-title {
    font-size: 1.5em;
    color: #F2FFF6;
    margin-bottom: 10px;
}

.page-support__method-text {
    color: #A7D9B8;
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.page-support__method-button:hover {
    opacity: 0.9;
}

/* FAQ Section */
.page-support__faq-wrapper {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 20px;
    cursor: pointer;
}

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

.page-support__faq-question {
    font-size: 1.3em;
    color: #F2FFF6;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    color: #A7D9B8;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-right: 15px; /* Prevent text from touching the expand icon */
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    margin-top: 10px;
}

.page-support__faq-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4); /* Glow */
}

.page-support__faq-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}


/* Responsible Gambling Section */
.page-support__responsible-gambling {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #2E7A4E;
}

.page-support__responsible-content {
    flex: 1;
    min-width: 300px;
}

.page-support__responsible-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-support__responsible-image {
    width: 100%;
    max-width: 600px; /* Max width for the image */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px; /* Minimum size */
    min-height: 150px; /* Maintain aspect ratio */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-support__responsible-gambling .page-support__section-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-support__text {
    color: #A7D9B8;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Banner Section */
.page-support__cta-banner {
    background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Main/Auxiliary colors */
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__cta-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__cta-text {
    font-size: 1.2em;
    color: #F2FFF6;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.page-support__cta-button--primary,
.page-support__cta-button--secondary {
    padding: 14px 30px;
    font-size: 1.1em;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__cta-button--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-support__cta-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-support__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #F2FFF6; /* Text Main */
    color: #F2FFF6;
}

.page-support__cta-button--secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(242, 255, 246, 0.1);
}

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

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

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

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

    .page-support__responsible-gambling {
        flex-direction: column;
        text-align: center;
    }

    .page-support__responsible-gambling .page-support__section-title {
        text-align: center;
    }

    /* Mobile overflow prevention */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

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

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

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

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

    .page-support__cta-button--primary,
    .page-support__cta-button--secondary {
        width: 100%;
    }
}

/* Content area images CSS dimensions check */
.page-support img {
    min-width: 200px;
    min- /* Adjusted to maintain aspect ratio for common landscape images */
    object-fit: cover; /* Ensures image covers the area without distortion */
}

.page-support__method-icon {
    min-width: 200px;
    min-height: 200px;
    max-width: 300px;
}

.page-support__responsible-image {
    min-width: 200px;
    min-height: 150px;
}