/* style/index-customer-service-center.css */
.page-index-customer-service-center {
    font-family: 'Arial', sans-serif;
    color: #0A192F; /* Deep Tech Blue for most text */
    line-height: 1.6;
}

.page-index-customer-service-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-index-customer-service-center__hero {
    background: linear-gradient(135deg, #0A192F 0%, #302B63 100%); /* Dark gradient for hero */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-customer-service-center__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B400; /* Golden/Amber for main title */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-index-customer-service-center__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.page-index-customer-service-center__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-customer-service-center__hero-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* General Section Styling */
.page-index-customer-service-center section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-index-customer-service-center__section--dark {
    background-color: #0A192F;
    color: #FFFFFF;
}

.page-index-customer-service-center__section-title {
    font-size: 2.5em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.page-index-customer-service-center__section-title--light {
    color: #E0B400;
}

.page-index-customer-service-center__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B400;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index-customer-service-center__section-title--light::after {
    background-color: #FFFFFF;
}

.page-index-customer-service-center__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333333;
}

.page-index-customer-service-center__section-description--light {
    color: #E0B400;
}

.page-index-customer-service-center__sub-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-index-customer-service-center__sub-title--light {
    color: #E0B400;
}

/* Buttons */
.page-index-customer-service-center__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-index-customer-service-center__btn--primary {
    background-color: #E0B400; /* Golden/Amber */
    color: #0A192F; /* Deep Tech Blue */
}

.page-index-customer-service-center__btn--primary:hover {
    background-color: #FFC72C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-index-customer-service-center__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Golden/Amber */
    border: 2px solid #E0B400;
}

.page-index-customer-service-center__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-index-customer-service-center__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

/* Contact Methods Section */
.page-index-customer-service-center__contact-methods {
    background-color: #F8F8F8;
}

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

.page-index-customer-service-center__method-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-customer-service-center__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-customer-service-center__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-index-customer-service-center__method-title {
    font-size: 1.5em;
    color: #0A192F;
    margin-bottom: 15px;
}

.page-index-customer-service-center__method-text {
    color: #555555;
    margin-bottom: 25px;
}

.page-index-customer-service-center__phone-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #E0B400;
}

.page-index-customer-service-center__link {
    color: #E0B400;
    text-decoration: none;
    font-weight: bold;
}

.page-index-customer-service-center__link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-index-customer-service-center__faq-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-customer-service-center__accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-customer-service-center__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-customer-service-center__accordion-header {
    background-color: #0A192F;
    color: #E0B400;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-customer-service-center__accordion-header:hover {
    background-color: #1a2a47;
}

.page-index-customer-service-center__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-index-customer-service-center__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-customer-service-center__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #F8F8F8;
    color: #333333;
}

.page-index-customer-service-center__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

/* Responsible Gaming Section */
.page-index-customer-service-center__responsible-gaming-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service-center__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto 40px;
}

.page-index-customer-service-center__list li {
    background-color: #F8F8F8;
    color: #0A192F;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-index-customer-service-center__list--light li {
    background-color: #1a2a47;
    color: #FFFFFF;
}

.page-index-customer-service-center__list li strong {
    color: #E0B400;
}

/* VIP Support Section */
.page-index-customer-service-center__vip-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Feedback Form Section */
.page-index-customer-service-center__feedback-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #1a2a47;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service-center__form-group {
    margin-bottom: 20px;
}

.page-index-customer-service-center__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0A192F;
}

.page-index-customer-service-center__form-label--light {
    color: #E0B400;
}

.page-index-customer-service-center__form-input,
.page-index-customer-service-center__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #0A192F;
    color: #FFFFFF;
    font-size: 1em;
}

.page-index-customer-service-center__form-input::placeholder,
.page-index-customer-service-center__form-textarea::placeholder {
    color: #AAAAAA;
}

.page-index-customer-service-center__form-textarea {
    resize: vertical;
}

/* Commitment Section */
.page-index-customer-service-center__commitment {
    background-color: #F8F8F8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-customer-service-center__hero-title {
        font-size: 2.5em;
    }

    .page-index-customer-service-center__section-title {
        font-size: 2em;
    }

    .page-index-customer-service-center__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-customer-service-center__methods-grid {
        grid-template-columns: 1fr;
    }

    .page-index-customer-service-center__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-customer-service-center__form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-customer-service-center__hero-title {
        font-size: 2em;
    }

    .page-index-customer-service-center__hero-subtitle,
    .page-index-customer-service-center__section-description,
    .page-index-customer-service-center__method-text {
        font-size: 0.95em;
    }

    .page-index-customer-service-center__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-index-customer-service-center__section-title {
        font-size: 1.8em;
    }

    .page-index-customer-service-center__sub-title {
        font-size: 1.5em;
    }

    .page-index-customer-service-center__method-card,
    .page-index-customer-service-center__feedback-form {
        padding: 20px;
    }

    .page-index-customer-service-center__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-index-customer-service-center__accordion-content p {
        padding: 10px 0;
    }
}