.page-support {
    background-color: #0D0E12;
    color: #FFF3E6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-support__hero-image {
    width: 100%;
    height: auto; /* Responsive height */
    max-height: 600px; /* Max height for desktop */
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 20px; /* Space between image and content for mobile */
}

.page-support__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above potential background elements */
}

.page-support__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF3E6;
}

.page-support__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-support__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

/* Container for sections */
.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.page-support__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #FFF3E6;
    position: relative;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFA53A, #D96800);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Support Channels Section */
.page-support__channels-section {
    padding: 60px 0;
    background-color: #17191F; /* Card BG */
}

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

.page-support__channel-card {
    background-color: #0D0E12; /* Background color for cards */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    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(-8px);
    box-shadow: 0 15px 30px rgba(255, 165, 58, 0.2);
}

.page-support__channel-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 250px; /* Max width for consistency */
    height: auto;
    min-height: 200px; /* Min height requirement */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-support__channel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFA53A; /* Auxiliary color */
}

.page-support__channel-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow text to grow and push button to bottom */
}

.page-support__channel-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    min-width: 150px;
    text-align: center;
}

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

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

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

.page-support__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-support__faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    color: #FFF3E6;
    background-color: #17191F;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #FFA53A;
    transition: transform 0.3s ease;
}

.page-support__faq-item.is-open .page-support__faq-question::after {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 30px 20px;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #FFF3E6;
}

.page-support__faq-item.is-open .page-support__faq-answer {
    max-height: 500px; /* Arbitrary large value to allow content to show */
    padding-top: 10px;
}

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

.page-support__faq-link {
    display: inline-block;
    color: #FFA53A;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #FFA53A;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-link:hover {
    color: #FFB04D;
    border-color: #FFB04D;
}

/* Contact CTA Section */
.page-support__contact-cta-section {
    padding: 60px 0 80px;
    text-align: center;
    background-color: #17191F;
}

.page-support__contact-cta-section .page-support__description {
    margin-bottom: 40px;
}

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

.page-support__secondary-cta-button {
    display: inline-block;
    background-color: transparent;
    color: #FFA53A;
    border: 2px solid #FFA53A;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-support__secondary-cta-button:hover {
    background-color: #FFA53A;
    color: #17191F;
    border-color: #FFA53A;
}

/* Responsive adjustments */
@media (min-width: 850px) {
    .page-support__hero-section {
        flex-direction: column; /* Still column, but image is wider */
        padding-top: 40px;
    }
    .page-support__hero-image {
        max-height: 675px; /* Adjust as needed for larger screens */
        margin-bottom: 40px; /* More space for desktop */
    }
    .page-support__main-title {
        font-size: 3.5rem;
    }
    .page-support__hero-content {
        position: relative; /* Not absolutely positioned over image, but below it */
        padding: 0 40px;
    }
    .page-support__channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-support__hero-image {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Ensure images are not too small */
    }
    .page-support__hero-content {
        padding: 0 15px;
    }
    .page-support__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        word-break: break-word; /* Prevent overflow for long titles */
    }
    .page-support__description {
        font-size: 1rem;
    }
    .page-support__channels-grid {
        grid-template-columns: 1fr;
    }
    .page-support__channel-icon {
        max-width: 200px; /* Smaller max-width for mobile icons */
        min-height: 200px;
    }
    .page-support__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-support__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        padding: 0 20px 15px;
    }
    .page-support__cta-button, .page-support__secondary-cta-button {
        width: 100%;
        max-width: 300px; /* Constrain width for mobile buttons */
        margin-left: auto;
        margin-right: auto;
    }
    .page-support__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 549px) {
    .page-support__hero-image {
        min-height: 200px;
    }
    .page-support__channels-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-support img:not(.page-support__hero-image) {
    min-width: 200px;
    min-height: 200px;
}