.page-support {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif; /* Roboto-like */
}

/* Hero Section */
.page-support__hero-section {
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it spans full width */
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
    border-radius: 8px;
}

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

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #FFF3E6; /* Main text color */
    margin-bottom: 15px;
    /* No fixed large font-size, rely on natural flow and responsive scaling */
}

.page-support__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-support__hero-cta {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    min-width: 200px; /* Ensure button minimum width */
    min-height: 48px; /* Ensure button minimum height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-support__hero-cta:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

/* General Section Styling */
.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-support__section-title {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF3E6; /* Main text color */
    background: linear-gradient(90deg, #FFB04D, #D96800); /* text-gradient effect */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #17191F; /* Card BG */
    padding-bottom: 60px;
}

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

.page-support__faq-item {
    background-color: #0D0E12; /* Background color for items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #A84F0C; /* Border color */
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: transparent;
    color: #FFF3E6;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

.page-support__faq-answer {
    padding: 0 20px 20px;
    background-color: transparent;
    color: #FFF3E6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-support__faq-link {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.3s ease;
    min-width: 100px;
    min-height: 36px;
    text-align: center;
}

.page-support__faq-link:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

/* Contact Section */
.page-support__contact-section {
    background-color: #0D0E12; /* Background */
    padding-top: 60px;
    padding-bottom: 80px;
}

.page-support__contact-description {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-support__contact-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #A84F0C; /* Border color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #FFA53A; /* Accent color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__contact-card-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-support__contact-card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    min-width: 150px;
    min-height: 40px;
    text-align: center;
}

.page-support__contact-card-btn:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-support__contact-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__main-title {
        font-size: 1.8em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

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

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

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

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

    .page-support__hero-image,
    .page-support__faq-image,
    .page-support__contact-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__main-title {
        font-size: 1.5em;
    }

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

    .page-support__hero-cta,
    .page-support__faq-link,
    .page-support__contact-card-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}