.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Main text color on dark background */
    background-color: #0A0A0A; /* Page background color */
    padding-bottom: 50px; /* Space above footer */
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 675px; /* Limit height for hero image */
    display: block;
}

.page-support__hero-content {
    max-width: 900px;
    margin-top: 40px; /* Space between image and content */
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: bold;
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-support__subtitle {
    font-size: 1.1em;
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-support__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
    color: #111111; /* Dark text on bright button */
    border: none;
}

.page-support__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background: transparent;
    color: #FFD36B; /* Glow color for text */
    border: 2px solid #FFD36B; /* Glow color for border */
}

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

.page-support__section {
    padding: 60px 20px;
    background-color: #0A0A0A; /* Consistent background */
    border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-support__section:last-of-type {
    border-bottom: none;
}

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

.page-support__section-title {
    font-size: 2.2em;
    color: #F2C14E; /* Main brand color for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-support__sub-title {
    font-size: 1.6em;
    color: #FFD36B; /* Auxiliary brand color for sub-titles */
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__text-block {
    font-size: 1.05em;
    color: #FFF6D6; /* Main text color */
    margin-bottom: 20px;
}

.page-support__text-block a {
    color: #F2C14E; /* Link color */
    text-decoration: underline;
}

.page-support__text-block a:hover {
    color: #FFD36B;
}

.page-support__highlight {
    color: #F2C14E; /* Highlight keywords with main brand color */
    font-weight: bold;
}

.page-support__image-content {
    width: 100%;
    height: auto;
    max-width: 800px; /* Recommended content image size */
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
}

/* FAQ Section Styling */
.page-support__faq-section {
    background-color: #0A0A0A;
}

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

.page-support__faq-item {
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a1a;
    color: #FFD36B; /* Auxiliary color for questions */
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #2a2a2a;
}

.page-support__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Ensure h3 inside faq-question is not too large */
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text color for answers */
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to reveal content */
    padding: 20px 25px;
}

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

.page-support__disclaimer {
    font-size: 0.9em;
    color: #888;
    text-align: center;
    margin-top: 30px;
}

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

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

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

    .page-support__hero-content {
        margin-top: 20px;
    }

    .page-support__main-title {
        font-size: 2em;
        padding: 0 15px;
    }

    .page-support__subtitle {
        font-size: 1em;
        padding: 0 15px;
    }

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

    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

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

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

    .page-support__sub-title {
        font-size: 1.2em;
        margin-top: 30px;
    }

    .page-support__text-block,
    .page-support__faq-question,
    .page-support__faq-answer p {
        font-size: 0.95em;
    }

    .page-support__image-content {
        margin: 20px auto;
    }

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

    .page-support__section,
    .page-support__container,
    .page-support__hero-content,
    .page-support__faq-item,
    .page-support__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* FAQ specific mobile padding adjustments */
    .page-support__faq-item .page-support__faq-question {
        padding: 15px;
    }
    .page-support__faq-item .page-support__faq-answer {
        padding: 0 15px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px;
    }
}