.page-support {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-support__hero-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-support__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 2.8em;
    color: #FF6B00; /* Primary color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555555;
}

.page-support__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__hero-image-wrapper {
    max-width: 100%;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-support__section-title {
    font-size: 2.2em;
    color: #FF6B00;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #00A86B; /* Auxiliary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #666666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #FF6B00;
    margin-bottom: 15px;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-support__faq-answer a {
    color: #00A86B; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

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

.page-support__contact-section {
    background-color: #f0f0f0;
    padding: 80px 20px;
    text-align: center;
}

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__contact-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
    width: 200px; /* Ensure image size is >= 200px */
    height: 150px; /* Ensure image size is >= 200px, adjust aspect ratio */
    object-fit: contain;
    margin-bottom: 10px;
    min-width: 200px;
    min-height: 200px;
}

.page-support__contact-title {
    font-size: 1.6em;
    color: #FF6B00;
}

.page-support__contact-text {
    color: #666666;
    margin-bottom: 20px;
}

.page-support__contact-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.page-support__resource-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-support__resource-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-support__resource-title a {
    color: #FF6B00;
    text-decoration: none;
}

.page-support__resource-title a:hover {
    text-decoration: underline;
}

.page-support__resource-description {
    color: #666666;
    margin-bottom: 15px;
}

.page-support__resource-link {
    color: #00A86B;
    text-decoration: none;
    font-weight: bold;
}

.page-support__resource-link:hover {
    text-decoration: underline;
}

.page-support__cta-section {
    background: linear-gradient(90deg, #FF6B00 0%, #00A86B 100%); /* Gradient background with brand colors */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff; /* White text for dark/gradient background */
}

.page-support__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent; /* Default transparent border */
}

/* Button styles */
.btn {
    cursor: pointer;
}

.btn--primary {
    background-color: #FF6B00;
    color: #ffffff;
    border-color: #FF6B00;
}

.btn--primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.btn--secondary {
    background-color: #00A86B;
    color: #ffffff;
    border-color: #00A86B;
}

.btn--secondary:hover {
    background-color: #008f5a;
    border-color: #008f5a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.4em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        flex-direction: column;
        padding: 60px 15px;
    }

    .page-support__hero-title {
        font-size: 2em;
    }

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

    .page-support__hero-image-wrapper,
    .page-support__hero-image {
        width: 100%;
        max-width: 100%; /* Ensure images are responsive and don't overflow */
        height: auto;
    }

    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr;
    }

    .page-support__faq-section,
    .page-support__contact-section,
    .page-support__resources-section {
        padding: 40px 15px;
    }

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

    .page-support__section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-support__cta-title {
        font-size: 2em;
    }

    .page-support__cta-description {
        font-size: 1.1em;
    }

    .page-support__cta-button {
        display: block;
        margin: 15px auto;
        width: calc(100% - 40px);
    }
    /* Ensure content area does not cause horizontal scroll */
    .page-support {
        max-width: 100%;
        overflow-x: hidden;
    }
    /* Mobile image constraint */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images within .page-support do not get smaller than 200px */
    .page-support__hero-image,
    .page-support__contact-icon {
        min-width: 200px;
        min-height: 200px;
        width: 100%; /* Make them fill available space while respecting min-width */
        height: auto;
    }
}