.page-support {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    line-height: 1.6;
    background-color: #F4F7FB;
}

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

.page-support__hero-section {
    position: relative;
    background-color: #F4F7FB;
    padding-bottom: 40px; /* Space between image and content */
}

.page-support__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

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

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

.page-support__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.page-support__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
}

.page-support__button--primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-support__button--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF;
    border: 1px solid #D6E2FF;
}

.page-support__button--secondary:hover {
    transform: translateY(-2px);
    background-color: #F4F7FB;
}

.page-support__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-support__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #000000;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1rem;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-section, .page-support__contact-methods-section, .page-support__additional-resources-section {
    background-color: #FFFFFF;
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.page-support__faq-item {
    background-color: #F4F7FB;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #D6E2FF;
    transition: transform 0.2s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.1);
}

.page-support__faq-question {
    font-size: 1.25rem;
    color: #2F6BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #1F2D3D;
}

.page-support__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-support__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

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

.page-support__method-card {
    background-color: #F4F7FB;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #D6E2FF;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-support__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.15);
}

.page-support__method-title {
    font-size: 1.3rem;
    color: #2F6BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-support__resource-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.page-support__resource-list li {
    margin-bottom: 10px;
}

.page-support__resource-list a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.page-support__resource-list a:hover {
    color: #6FA3FF;
    text-decoration: underline;
}

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

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

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

    .page-support__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-support__section-description {
        margin-bottom: 30px;
    }

    .page-support__faq-item, .page-support__method-card {
        padding: 20px;
    }

    .page-support__faq-question {
        font-size: 1.1rem;
    }

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

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

    .page-support__content-image {
        max-width: 100%;
        height: auto;
    }

    .page-support__resource-list a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-support__hero-section, .page-support__faq-section, .page-support__contact-methods-section, .page-support__additional-resources-section {
        padding: 30px 0;
    }

    .page-support__container {
        padding: 10px;
    }

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

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

    .page-support__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-support__faq-question {
        font-size: 1rem;
    }

    .page-support__method-title {
        font-size: 1.1rem;
    }

    .page-support__method-description {
        font-size: 0.9rem;
    }
    .page-support__button {
        max-width: 250px;
    }
}