.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main - light color for dark background */
    background-color: #08160F; /* Background */
}

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

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

.page-support__section-title,
.page-support__main-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #F2FFF6; /* Text Main */
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__intro-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-support strong {
    color: #F2C14E; /* Gold */
}

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.page-support__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__channels-section {
    background-color: #11271B; /* Card BG */
}

.page-support__channel-item {
    background-color: #0A4B2C; /* Deep Green */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__channel-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-support__code-guide-section {
    background-color: #08160F; /* Background */
}

.page-support__step-by-step,
.page-support__benefits,
.page-support__troubleshooting {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__step-title,
.page-support__benefits-title,
.page-support__troubleshooting-title {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 10px;
}

.page-support__step-list,
.page-support__benefits-list,
.page-support__troubleshooting-list,
.page-support__responsibility-list,
.page-support__contact-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 15px;
    color: #A7D9B8; /* Text Secondary */
}

.page-support__step-list li,
.page-support__benefits-list li,
.page-support__troubleshooting-list li,
.page-support__responsibility-list li,
.page-support__contact-list li {
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
}

.page-support__step-list li strong {
    color: #F2C14E; /* Gold */
}

.page-support__faq-section {
    background-color: #0A4B2C; /* Deep Green */
}

.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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-support__faq-item[open] .page-support__faq-question {
    background-color: #1E3A2A; /* Divider - slightly darker */
    border-bottom-color: #2E7A4E; /* Border */
}

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

.page-support__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2C14E; /* Gold */
    transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar, here to a rotated + */
}

.page-support__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
}

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

.page-support__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-support__security-section {
    background-color: #08160F; /* Background */
}

.page-support__policy-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__policy-title {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 10px;
}

.page-support__contact-section {
    background-color: #11271B; /* Card BG */
}

.page-support__contact-form-wrapper,
.page-support__other-contact {
    background-color: #0A4B2C; /* Deep Green */
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-support__contact-subtitle {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 10px;
}

.page-support__contact-list li {
    color: #F2FFF6; /* Text Main */
}

.page-support__contact-list a {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

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

.page-support__cta-section {
    background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Main color gradient */
    text-align: center;
    padding: 80px 20px;
}

.page-support__cta-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

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

.page-support__cta-description a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: bold;
}

.page-support__cta-description a:hover {
    text-decoration: underline;
}

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

.page-support__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* For mobile responsiveness */
}

.page-support__button--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__button--primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__button--secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background */
    transform: translateY(-2px);
}

.page-support a:not(.page-support__button) {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-support a:not(.page-support__button):hover {
    color: #F2C14E; /* Gold */
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-support__section {
        padding: 40px 0;
    }

    .page-support__section-title,
    .page-support__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 20px;
        padding: 0 15px; /* Add padding for mobile text */
    }

    .page-support__intro-text {
        font-size: 0.95em;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-support__hero-section {
        padding-bottom: 40px;
    }

    .page-support__hero-image {
        margin-bottom: 20px;
    }

    .page-support__channel-item,
    .page-support__step-by-step,
    .page-support__benefits,
    .page-support__troubleshooting,
    .page-support__policy-item,
    .page-support__contact-form-wrapper,
    .page-support__other-contact {
        padding: 20px;
        margin-top: 20px;
    }

    .page-support__channel-title,
    .page-support__step-title,
    .page-support__benefits-title,
    .page-support__troubleshooting-title,
    .page-support__policy-title,
    .page-support__contact-subtitle {
        font-size: 1.4em;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

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

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

    .page-support__cta-section {
        padding: 60px 15px;
    }

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

    .page-support__cta-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

    .page-support__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }

    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__cta-buttons,
    .page-support__button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__section .page-support__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-support__hero-section {
        padding-top: 10px !important;
    }

    .page-support__button {
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
    }

    .page-support__video-section {
        padding-top: 10px !important;
    }

    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-support__video-section,
    .page-support__video-container,
    .page-support__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-support__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}