/* style/support.css */
/* Body background is #08160F (Deep Green from custom colors) - so text should be light #F2FFF6 */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    font-size: 16px;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    text-align: center;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width for large screens */
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-support__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Use clamp for H1 */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width for flex-wrap */
    max-width: 600px; /* Limit button group width */
    margin: 0 auto;
}

/* General Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-support__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F; /* A lighter green for contrast */
    border: 2px solid #2AD16F;
}

.page-support__btn-secondary:hover {
    background: #2AD16F;
    color: #11271B;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

/* Section Titles and Descriptions */
.page-support__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 15px;
}

.page-support__section-description {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-support__method-card {
    background: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__method-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px; /* Ensure images are not small icons */
}

.page-support__method-title {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-support__method-text {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
    flex-grow: 1; /* Push button to bottom */
}

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

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

.page-support__faq-item {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-support__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #1a3325; /* Slightly darker hover */
}

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

.page-support__faq-item[open] .page-support__faq-toggle {
    content: "−"; /* Change to minus when open */
}

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

.page-support__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

.page-support__faq-cta {
    text-align: center;
    margin-top: 50px;
}

.page-support__faq-cta-text {
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 25px;
}

/* Video Section */
.page-support__video-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

.page-support__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    width: 100%; /* Ensure it takes full width of its container */
}

.page-support__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block; /* Ensure no extra space below video */
}

.page-support__video-cta {
    margin-top: 30px;
}

/* Policy Links Section */
.page-support__policy-links {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.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: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-support__policy-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: clamp(2em, 5vw, 2.5em);
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }

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

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

    .page-support__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em) !important; /* Mobile H1 size */
        margin-bottom: 15px;
    }

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

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

    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 100% !important; /* Full width buttons */
        padding: 12px 20px !important;
        font-size: 1em !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-support__container {
        padding: 0 15px; /* Add padding to container */
    }

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

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

    .page-support__contact-methods,
    .page-support__faq-section,
    .page-support__video-section,
    .page-support__policy-links {
        padding: 50px 0;
    }

    .page-support__methods-grid,
    .page-support__policy-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }

    .page-support__method-icon {
        width: 100px;
        height: 100px;
    }

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

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

    /* Images responsiveness */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Image containers responsiveness */
    .page-support__hero-image-wrapper,
    .page-support__method-card,
    .page-support__policy-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent overflow from images */
    }

    /* Video responsiveness */
    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Video containers responsiveness */
    .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; /* Add horizontal padding */
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-support__video-section {
        padding-top: 10px !important; /* Small top padding for mobile video section */
    }
}

/* Ensure no filter on images */
.page-support img {
    filter: none !important;
}