.page-support {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

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

.page-support__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    background-color: #2F6BFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for aesthetic */
    filter: brightness(0.8); /* Slightly darken image for text contrast */
}

.page-support__hero-content {
    position: relative; /* Ensure content is below image in normal flow */
    padding: 40px 20px;
    color: #FFFFFF;
    max-width: 900px;
    text-align: center;
}

.page-support__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-support__description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #E0E7F5;
    max-width: 800px;
    margin: 0 auto;
}

.page-support__faq-section,
.page-support__contact-options-section,
.page-support__responsible-gaming-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

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

.page-support__faq-title,
.page-support__contact-title,
.page-support__responsible-gaming-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
}

.page-support__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-support__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 10px;
}

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

.page-support__faq-answer a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__contact-description,
.page-support__responsible-gaming-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__contact-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #D6E2FF;
}

.page-support__contact-card-icon {
    width: 250px; /* Ensure minimum size */
    height: 187.5px; /* Maintain aspect ratio for 400x300 request */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    min-width: 200px;
    min-height: 150px;
}

.page-support__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 15px;
}

.page-support__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-support__btn:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-support__btn--secondary {
    background: #6FA3FF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-support__btn--secondary:hover {
    background: #2F6BFF;
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .page-support__faq-title,
    .page-support__contact-title,
    .page-support__responsible-gaming-title {
        font-size: 2rem;
    }

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

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

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

    .page-support__hero-content {
        padding: 20px 15px;
    }

    .page-support__hero-image {
        max-height: 400px;
    }

    /* Ensure content area images are responsive and don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }

    .page-support__contact-card-icon {
        width: 100%;
        height: auto;
        max-width: 300px;
        max-height: 225px;
        min-width: 200px;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .page-support__faq-section,
    .page-support__contact-options-section,
    .page-support__responsible-gaming-section {
        padding: 40px 0;
    }
    .page-support__container {
        padding: 15px;
    }
}

/* Global image size constraint for content area */
.page-support img:not(.page-support__hero-image) {
    min-width: 200px;
    min-height: 200px;
}