.page-support {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

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

.page-support__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rules */
    background-color: #2A1212;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-support__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF1E8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-support__cta-button,
.page-support__contact-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover,
.page-support__contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(243, 197, 77, 0.4);
}

.page-support__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F3C54D;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C61F1F, #E53030);
    border-radius: 2px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__policies-section {
    padding: 40px 0;
    background-color: #140C0C;
}

.page-support__faq-image,
.page-support__contact-image,
.page-support__guides-image {
    display: block;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-support__faq-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
    width: 100%;
    background-color: #C61F1F;
    color: #FFF1E8;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-support__faq-question[aria-expanded="true"] {
    background-color: #E53030;
}

.page-support__faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    background-color: #2A1212;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer p {
    padding-bottom: 15px;
    color: #FFF1E8;
}

.page-support__faq-answer a {
    color: #F3C54D;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding-bottom: 15px;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

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

.page-support__card {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.page-support__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-support__contact-title,
.page-support__guide-title,
.page-support__policy-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-support__contact-item p,
.page-support__guide-card p,
.page-support__policy-item p {
    font-size: 0.95rem;
    color: #FFF1E8;
    margin-bottom: 20px;
}

.page-support__guide-card,
.page-support__policy-item {
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-support__container {
        padding: 15px;
    }

    .page-support__hero-content {
        padding: 30px 15px;
    }

    .page-support__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-support__description {
        font-size: 1rem;
    }

    .page-support__section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin: 40px 0 30px;
    }

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

    .page-support__faq-answer p {
        font-size: 0.9rem;
    }

    .page-support__contact-methods,
    .page-support__guides-list,
    .page-support__policies-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ensure images in content area are responsive and not too small */
    .page-support__faq-image,
    .page-support__contact-image,
    .page-support__guides-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Global rule for content area images to prevent overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__cta-button,
    .page-support__contact-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}