/* style/index-customer-service.css */
.page-index-customer-service {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-index-customer-service-hero {
    background-color: #0A2463;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-customer-service-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-customer-service-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

.page-index-customer-service-hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service-section {
    padding: 60px 0;
    text-align: center;
}

.page-index-customer-service-section:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.page-index-customer-service-section:nth-of-type(even) {
    background-color: #FFFFFF;
}

.page-index-customer-service-section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-customer-service-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-customer-service-section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-index-customer-service-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service-btn-primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-index-customer-service-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-customer-service-btn-secondary {
    background-color: #0A2463;
    color: #FFFFFF;
    border: 2px solid #0A2463;
}

.page-index-customer-service-btn-secondary:hover {
    background-color: #1a3a7a;
    border-color: #1a3a7a;
    transform: translateY(-3px);
}

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

.page-index-customer-service-channel-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-customer-service-channel-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-customer-service-channel-text {
    color: #666;
    margin-bottom: 20px;
}

.page-index-customer-service-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    text-align: left;
    margin-top: 40px;
}

.page-index-customer-service-faq-item {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700;
}

.page-index-customer-service-faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-customer-service-faq-answer {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-index-customer-service-faq-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

.page-index-customer-service-faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-customer-service-responsible-gambling ul,
.page-index-customer-service-commitment ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-index-customer-service-responsible-gambling li,
.page-index-customer-service-commitment li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
}

.page-index-customer-service-responsible-gambling li strong,
.page-index-customer-service-commitment li strong {
    color: #0A2463;
}

.page-index-customer-service-responsible-gambling-image,
.page-index-customer-service-commitment-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-customer-service-hero {
        padding: 60px 0;
    }

    .page-index-customer-service-hero-title {
        font-size: 2.5em;
    }

    .page-index-customer-service-hero-subtitle {
        font-size: 1em;
    }

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

    .page-index-customer-service-section-description {
        font-size: 1em;
    }

    .page-index-customer-service-channels-grid,
    .page-index-customer-service-faq-grid {
        grid-template-columns: 1fr;
    }

    .page-index-customer-service-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-customer-service-channel-item,
    .page-index-customer-service-faq-item {
        padding: 20px;
    }
}

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

    .page-index-customer-service-hero-subtitle {
        font-size: 0.9em;
    }

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