.page-support {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* Generic font, as no specific one is provided */
    line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image-above-text */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, good bottom padding */
    background-color: #2F6BFF; /* Main color for hero background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Match img width attribute for consistency */
    margin-bottom: 20px; /* Space between image and text */
}

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

.page-support__hero-content {
    max-width: 900px;
    width: 100%;
    position: relative; /* Ensure content is not positioned absolutely over image */
    z-index: 1;
}

.page-support__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* Using clamp for responsive H1, not fixed large size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-support__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter text for contrast */
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slight hover effect */
}

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

/* Section Titles */
.page-support__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #F4F7FB; /* Background */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.page-support__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-support__faq-question {
    font-size: 1.25rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
}

.page-support__read-more-link {
    display: inline-block;
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-support__read-more-link:hover {
    color: #6FA3FF; /* Auxiliary color */
    text-decoration: underline;
}

.page-support__faq-image {
    width: 100%;
    max-width: 800px; /* Match img width attribute */
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}


/* Contact Info Section */
.page-support__contact-info-section {
    background-color: #2F6BFF; /* Main color for background */
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__contact-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #E0E0E0;
}

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

.page-support__contact-method-item {
    background-color: #6FA3FF; /* Auxiliary color for card background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__contact-method-item:hover {
    transform: translateY(-5px);
    background-color: #4A8BFF; /* Darker blue on hover */
}

.page-support__method-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-support__method-text {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.page-support__contact-button {
    display: inline-block;
    padding: 10px 20px;
    background: #FFFFFF; /* White button on blue background */
    color: #2F6BFF; /* Main color for text */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-support__contact-button:hover {
    background: #E0E0E0;
    color: #1F2D3D; /* Text Main for hover */
}

.page-support__contact-image {
    width: 100%;
    max-width: 1000px; /* Match img width attribute */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 10px 15px 30px;
    }

    .page-support__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-support__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-top: 30px;
    }

    .page-support__faq-list {
        grid-template-columns: 1fr;
    }

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

    /* Mobile content area image overflow fix */
    .page-support__faq-image,
    .page-support__contact-image,
    .page-support__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-support__container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-section {
        padding: 10px 10px 20px;
    }
    .page-support__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-support__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-support__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-support__faq-question {
        font-size: 1.1rem;
    }
    .page-support__method-title {
        font-size: 1.2rem;
    }
}