/* style/help-center-contact-customer-service.css */

.page-help-center-contact-customer-service {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A1931;
    line-height: 1.6;
}

.page-help-center-contact-customer-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-help-center-contact-customer-service__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a61 100%);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-help-center-contact-customer-service__main-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-help-center-contact-customer-service__subtitle {
    font-size: 1.2em;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-help-center-contact-customer-service__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-help-center-contact-customer-service__contact-methods,
.page-help-center-contact-customer-service__faq-section,
.page-help-center-contact-customer-service__additional-info,
.page-help-center-contact-customer-service__final-cta {
    padding: 60px 0;
    background-color: #122849;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-help-center-contact-customer-service__contact-methods {
    background-color: #0A1931;
    border-radius: 0;
    box-shadow: none;
}

.page-help-center-contact-customer-service__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-help-center-contact-customer-service__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-help-center-contact-customer-service__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-help-center-contact-customer-service__method-card {
    background-color: #1A3459;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-help-center-contact-customer-service__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-help-center-contact-customer-service__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-help-center-contact-customer-service__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-help-center-contact-customer-service__method-text {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-help-center-contact-customer-service__phone-number,
.page-help-center-contact-customer-service__email-address {
    font-size: 1.1em;
    color: #FFD700;
    margin-top: 15px;
    margin-bottom: 25px;
}

.page-help-center-contact-customer-service__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-help-center-contact-customer-service__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
}

.page-help-center-contact-customer-service__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-help-center-contact-customer-service__btn--secondary {
    background-color: #0A1931;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-help-center-contact-customer-service__btn--secondary:hover {
    background-color: #1A3459;
    transform: translateY(-2px);
}

.page-help-center-contact-customer-service__faq-list {
    margin-top: 40px;
}

.page-help-center-contact-customer-service__faq-item {
    background-color: #1A3459;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-help-center-contact-customer-service__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.page-help-center-contact-customer-service__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-help-center-contact-customer-service__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-help-center-contact-customer-service__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    padding-top: 10px;
    border-top: 1px solid #2A4F7F;
    margin-top: 15px;
    display: none;
}

.page-help-center-contact-customer-service__faq-answer.show {
    display: block;
}

.page-help-center-contact-customer-service__cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px dashed #2A4F7F;
}

.page-help-center-contact-customer-service__cta-text {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 500;
}

.page-help-center-contact-customer-service__additional-info {
    background-color: #0A1931;
}

.page-help-center-contact-customer-service__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-help-center-contact-customer-service__info-card {
    background-color: #1A3459;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-help-center-contact-customer-service__info-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-help-center-contact-customer-service__info-text {
    font-size: 0.95em;
    color: #CCCCCC;
}

.page-help-center-contact-customer-service__final-cta {
    text-align: center;
    background: linear-gradient(90deg, #0A1931 0%, #1A3459 100%);
    padding: 80px 0;
    border-radius: 0;
}

.page-help-center-contact-customer-service__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-help-center-contact-customer-service__main-title {
        font-size: 2.5em;
    }

    .page-help-center-contact-customer-service__section-title {
        font-size: 2em;
    }

    .page-help-center-contact-customer-service__subtitle,
    .page-help-center-contact-customer-service__section-description {
        font-size: 1em;
    }

    .page-help-center-contact-customer-service__methods-grid,
    .page-help-center-contact-customer-service__info-grid {
        grid-template-columns: 1fr;
    }

    .page-help-center-contact-customer-service__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-help-center-contact-customer-service__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-help-center-contact-customer-service__cta-buttons .page-help-center-contact-customer-service__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-help-center-contact-customer-service__hero-section,
    .page-help-center-contact-customer-service__contact-methods,
    .page-help-center-contact-customer-service__faq-section,
    .page-help-center-contact-customer-service__additional-info,
    .page-help-center-contact-customer-service__final-cta {
        padding: 40px 0;
    }

    .page-help-center-contact-customer-service__main-title {
        font-size: 2em;
    }

    .page-help-center-contact-customer-service__section-title {
        font-size: 1.8em;
    }

    .page-help-center-contact-customer-service__method-title,
    .page-help-center-contact-customer-service__info-title {
        font-size: 1.5em;
    }

    .page-help-center-contact-customer-service__faq-question {
        font-size: 1.1em;
    }
}