.page-support {
    background-color: var(--background);
    color: var(--text-main);
    padding-bottom: 40px;
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__hero-title {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.page-support__hero-description {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

.page-support__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--button);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure button is not too small */
}

.page-support__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-support__contact-methods,
.page-support__faq-section {
    padding: 60px 0;
    text-align: center;
}

.page-support__section-title {
    color: var(--gold);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.page-support__section-description {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-support__method-card,
.page-support__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover,
.page-support__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__method-icon {
    width: 100%;
    max-width: 250px; /* Ensure image is not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-support__method-title,
.page-support__faq-question {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-support__method-text,
.page-support__faq-answer {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-support__method-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--deep-red);
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure button is not too small */
}

.page-support__method-button:hover {
    background-color: var(--primary-color);
}

.page-support__view-all-faq-button {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 30px;
    background: var(--button);
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 220px; /* Ensure button is not too small */
}

.page-support__view-all-faq-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-support__hero-section {
        min-height: 350px;
        padding: 0 15px;
    }
    .page-support__hero-content {
        padding: 30px 15px;
    }
    .page-support__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-support__hero-description {
        font-size: 1rem;
    }
    .page-support__contact-methods,
    .page-support__faq-section {
        padding: 40px 0;
    }
    .page-support__method-grid,
    .page-support__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-support__method-card,
    .page-support__faq-item {
        padding: 25px;
    }
    .page-support__method-icon {
        max-width: 200px;
    }
    .page-support__method-title,
    .page-support__faq-question {
        font-size: 1.2rem;
    }
    .page-support__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

@media (max-width: 549px) {
    .page-support__hero-section {
        min-height: 300px;
    }
    .page-support__hero-content {
        padding: 20px 10px;
    }
    .page-support__hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-support__cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .page-support__container {
        padding: 15px;
    }
    .page-support__method-button {
        width: 100%;
        max-width: 200px;
    }
    .page-support__view-all-faq-button {
        width: 100%;
        max-width: 280px;
        margin: 40px auto 0 auto;
    }
    /* Mobile image overflow prevention */
    .page-support img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .page-support__hero-image {
        height: 100%; /* Ensure hero image covers the full height */
    }
}

/* Ensure content area images are not too small */
.page-support img:not(.page-support__method-icon) {
    min-width: 200px;
    min-height: 200px;
}
.page-support__method-icon {
    min-width: 200px;
    min-height: 200px;
}