.page-support {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
}

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

.page-support__hero-section {
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Mix of auxiliary and primary colors */
    padding-top: 10px; /* Adjusted for header offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

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

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-support__hero-content-wrapper {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-support__main-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-support__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-support__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Primary color */
    border: 1px solid #2F6BFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-support__btn-secondary:hover {
    background: #F4F7FB;
    color: #2F6BFF;
    transform: translateY(-2px);
}

.page-support__section {
    padding: 60px 0;
}

.page-support__section-title {
    font-size: 2.2em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.05em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.page-support__content-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-support__content-block--reversed {
    flex-direction: row-reverse;
}

.page-support__text-content {
    flex: 1;
}

.page-support__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-support__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-support__sub-title {
    font-size: 1.6em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__ordered-list,
.page-support__unordered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-support__ordered-list li,
.page-support__unordered-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-support__contact-link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-support__contact-link:hover {
    text-decoration: underline;
}

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

.page-support__policy-card {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-support__card-title {
    font-size: 1.4em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__policy-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-support__faq-item {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    border-bottom: 1px solid #D6E2FF;
    list-style: none;
}

.page-support__faq-question::-webkit-details-marker {
    display: none;
}

.page-support__faq-question::marker {
    display: none;
}

.page-support__faq-qtext {
    flex-grow: 1;
}

.page-support__faq-toggle-icon {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2F6BFF;
}

.page-support__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: #1F2D3D;
}

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

.page-support__faq-answer .page-support__btn-secondary {
    margin-top: 15px;
}

.page-support__link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-support__link:hover {
    text-decoration: underline;
}

.page-support__copyright-section {
    padding: 20px 0;
    text-align: center;
    background-color: #E6EEFF; /* A lighter shade of primary */
    border-top: 1px solid #D6E2FF;
}

.page-support__copyright-text {
    font-size: 0.9em;
    color: #1F2D3D; /* Text Main */
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: 2.5em;
    }

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

    .page-support__sub-title {
        font-size: 1.4em;
    }

    .page-support__content-block {
        flex-direction: column;
        align-items: center;
    }

    .page-support__content-block--reversed {
        flex-direction: column;
    }

    .page-support__text-content,
    .page-support__image-block {
        flex: none;
        width: 100%;
    }

    .page-support__policy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-top: 10px !important;
    }

    .page-support__hero-content-wrapper {
        padding: 30px 0;
    }

    .page-support__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-support__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary {
        padding: 10px 20px;
        font-size: 0.95em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px;
    }

    .page-support__section {
        padding: 40px 0;
    }

    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-support__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-support__container {
        padding: 15px;
    }

    /* General images and containers for mobile */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-support__section,
    .page-support__content-block,
    .page-support__policy-grid,
    .page-support__faq-list,
    .page-support__hero-image-wrapper,
    .page-support__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

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

    .page-support__policy-card,
    .page-support__faq-item {
        padding: 20px;
    }

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

    .page-support__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    
    /* Multiple buttons arrangement for mobile */
    .page-support__hero-content-wrapper .page-support__btn-primary,
    .page-support__content-block .page-support__btn-secondary,
    .page-support__content-block .page-support__btn-primary {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px; /* Add space between stacked buttons */
    }
    .page-support__policy-card .page-support__btn-secondary {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }
}