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

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

.page-support__hero-section {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-content {
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
}

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0EFFF; /* Lighter white for contrast */
}

.page-support__search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__search-input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 1em;
    color: #1F2D3D;
}

.page-support__search-input::placeholder {
    color: #888;
}

.page-support__search-button {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.page-support__search-button:hover {
    opacity: 0.9;
}

.page-support__faq-section {
    padding: 60px 0;
}

.page-support__section-title {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-support__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-support__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.page-support__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

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

.page-support__faq-item.active .page-support__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
}

.page-support__button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
    margin-top: 10px;
    margin-right: 10px;
}

.page-support__button:hover {
    opacity: 0.9;
}

.page-support__contact-section {
    background-color: #F4F7FB;
    padding: 60px 0;
    text-align: center;
}

.page-support__contact-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.page-support__contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 30px 20px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1.1em;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-support__contact-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #2F6BFF; /* Using primary color for icons */
}

@media (max-width: 992px) {
    .page-support__main-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__search-box {
        flex-direction: column;
        align-items: stretch;
    }
    .page-support__search-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-support__container {
        padding: 10px 15px 30px;
    }
    .page-support__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
    }
    .page-support__description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__faq-item {
        padding: 20px;
    }
    .page-support__contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .page-support__contact-button {
        width: 90%;
        max-width: 300px;
    }
    /* Mobile image rule */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not too small */
    .page-support__faq-answer img, 
    .page-support__contact-section img {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%; /* Override if a specific width was set for desktop */
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__faq-question {
        font-size: 1em;
    }
    .page-support__search-input, .page-support__search-button {
        padding: 10px 15px;
    }
    .page-support__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-support__contact-button {
        font-size: 1em;
        padding: 25px 15px;
    }
}