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

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

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

.page-support__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__sub-title {
    font-size: 1.8em;
    color: #F2FFF6; /* Text Main */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 1em;
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: #08160F;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for the hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

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

.page-support__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-support__main-title {
    font-size: clamp(2.2em, 5vw, 3.5em);
    color: #F2FFF6;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-support__description {
    font-size: 1.2em;
    color: #A7D9B8;
    margin-bottom: 30px;
}

.page-support__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-support__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-support__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-support__intro-section .page-support__text-block {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.page-support__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__channel-card {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-support__channel-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__channel-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__channel-sub-title {
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.page-support__channel-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__channel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
}

.page-support__channel-list li {
    margin-bottom: 10px;
}

.page-support__channel-list p {
    color: #A7D9B8;
    font-size: 0.9em;
}

.page-support__email-address,
.page-support__phone-number {
    color: #57E38D; /* Glow */
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-support__issues-section {
    padding: 80px 0;
}

.page-support__issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__issue-card {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.page-support__issue-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 10px #57E38D;
}

.page-support__issue-card--alt {
    background-color: #11271B; /* Card BG */
}

.page-support__issue-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__issue-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-support__text-link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-support__text-link:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-support__guide-section {
    padding: 80px 0;
}

.page-support__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__guide-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-support__guide-item:hover {
    transform: translateY(-5px);
}

.page-support__guide-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__guide-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__guide-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

.page-support__cta-wrapper {
    margin-top: 50px;
}

.page-support__security-section {
    padding: 80px 0;
}

.page-support__security-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.page-support__security-text {
    flex: 1;
    min-width: 300px;
}

.page-support__security-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-support__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-support__faq-section {
    padding: 80px 0;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

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

.page-support__faq-item:hover {
    background-color: #11271B; /* Card BG */
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    color: #F2FFF6; /* Text Main */
    font-weight: 600;
    list-style: none;
    user-select: none;
}

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

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

details[open] .page-support__faq-toggle {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 25px 20px 25px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.7;
}

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

.page-support__conclusion-section {
    padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-support__hero-image-wrapper {
        max-height: 500px;
    }
    .page-support__hero-image {
        width: 100%;
        height: auto;
    }
    .page-support__channels-grid,
    .page-support__issues-grid,
    .page-support__guide-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-support__security-content {
        flex-direction: column;
        text-align: center;
    }
    .page-support__security-text {
        min-width: unset;
    }
    .page-support__security-image-wrapper {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-support__section {
        padding: 40px 0;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__sub-title {
        font-size: 1.5em;
    }
    .page-support__section-description {
        font-size: 1em;
    }
    .page-support__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-support__description {
        font-size: 1em;
    }
    .page-support__hero-image-wrapper {
        max-height: 400px;
    }
    .page-support__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-support__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-support__channels-grid,
    .page-support__issues-grid,
    .page-support__guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__container {
        padding: 0 15px;
    }
    .page-support__channel-card,
    .page-support__issue-card,
    .page-support__guide-item {
        padding: 20px;
    }
    .page-support__channel-icon,
    .page-support__guide-icon {
        width: 80px;
        height: 80px;
    }
    .page-support__channel-title {
        font-size: 1.3em;
    }
    .page-support__issue-title {
        font-size: 1.2em;
    }
    .page-support__guide-title {
        font-size: 1.2em;
    }

    /* Mobile image responsive */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers with images/buttons/content */
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__hero-image-wrapper,
    .page-support__security-image-wrapper,
    .page-support__cta-wrapper,
    .page-support__channels-grid,
    .page-support__issues-grid,
    .page-support__guide-grid,
    .page-support__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-support__hero-section {
        padding-top: 10px !important;
    }
    .page-support__hero-content {
        padding: 0;
    }

    /* Multiple buttons arrangement for mobile */
    .page-support__cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-support__text-link-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .page-support__text-link {
        display: block;
        text-align: center;
        padding: 8px 0;
        border: 1px solid #2E7A4E;
        border-radius: 5px;
        background-color: #0A4B2C;
    }
}

@media (max-width: 480px) {
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__sub-title {
        font-size: 1.3em;
    }
    .page-support__hero-image-wrapper {
        max-height: 300px;
    }
    .page-support__cta-button {
        font-size: 1em;
    }
    .page-support__cta-button--large {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-support__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 0 20px 15px 20px;
    }
}