.page-support__hero-section {
    background-color: #F4F7FB;
    padding: 10px 0 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    text-align: center;
}

.page-support__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-support__cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.page-support__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-support__button--secondary {
    background: #FFFFFF;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    box-shadow: none;
}

.page-support__button--secondary:hover {
    background-color: #E6F0FF;
    color: #2F6BFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.1);
}

.page-support__button--outline {
    background: transparent;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    box-shadow: none;
}

.page-support__button--outline:hover {
    background-color: #E6F0FF;
    color: #2F6BFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.1);
}

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

.page-support__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
}

.page-support__section-description {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

/* FAQ Section */
.page-support__faq-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

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

.page-support__faq-item {
    background-color: #F4F7FB;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.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.25rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-support__faq-link {
    text-decoration: none;
    color: #000000; /* Custom Color_1776249996415 */
    transition: color 0.3s ease;
}

.page-support__faq-link:hover {
    color: #2F6BFF;
}

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

.page-support__faq-answer a {
    color: #2F6BFF;
    text-decoration: underline;
}

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

/* Contact Section */
.page-support__contact-section {
    background-color: #F4F7FB;
    padding: 80px 0;
}

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

.page-support__contact-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

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

.page-support__contact-icon {
    width: 100%;
    max-width: 250px; /* Ensure images are not too small but still fit card */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.page-support__card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

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

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.page-support__responsible-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-support__responsible-content {
    flex: 1;
    text-align: left;
}

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

.page-support__responsible-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: 2.5rem;
    }
    .page-support__section-title {
        font-size: 2rem;
    }
    .page-support__responsible-container {
        flex-direction: column;
        text-align: center;
    }
    .page-support__responsible-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 10px 0 40px;
    }
    .page-support__main-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem); /* Using clamp as per rule */
        margin-bottom: 15px;
    }
    .page-support__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-support__cta-group {
        flex-direction: column;
        gap: 10px;
    }
    .page-support__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .page-support__section-title {
        font-size: 1.8rem;
    }
    .page-support__section-description {
        margin-bottom: 30px;
    }
    .page-support__faq-list {
        grid-template-columns: 1fr;
    }
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }
    /* Mobile image overflow prevention */
    .page-support__hero-image,
    .page-support__contact-icon,
    .page-support__responsible-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px (this applies to their *display* size, not source size) */
    .page-support__faq-item img,
    .page-support__contact-card img,
    .page-support__responsible-gaming-section img {
        min-width: 200px;
        min-height: 200px;
        object-fit: contain; /* or cover, depending on desired crop */
    }
}

@media (max-width: 480px) {
    .page-support__hero-section {
        padding: 10px 0 30px;
    }
    .page-support__main-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    .page-support__button {
        padding: 12px 20px;
    }
    .page-support__section-title {
        font-size: 1.6rem;
    }
    .page-support__faq-item, .page-support__contact-card {
        padding: 20px;
    }
    .page-support__faq-question {
        font-size: 1.1rem;
    }
}