/* style/index-customer-service.css */

/* Base styles for the page content */
.page-index-customer-service {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A2342; /* Main brand color as background */
    line-height: 1.6;
}

/* Hero Section */
.page-index-customer-service__hero {
    background: linear-gradient(135deg, #0A2342, #1A3A61); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-index-customer-service__hero-content {
    max-width: 800px;
}

.page-index-customer-service__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

.page-index-customer-service__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-customer-service__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-customer-service__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-index-customer-service__hero-image-wrapper {
    max-width: 600px;
    margin-top: 30px;
}

.page-index-customer-service__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-index-customer-service__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-index-customer-service__section-intro {
    font-size: 1.1em;
    color: #c0c0c0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Channels Section */
.page-index-customer-service__channels {
    padding: 60px 20px;
    background-color: #0F2D52;
}

.page-index-customer-service__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-customer-service__channel-item {
    background-color: #1A3A61;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-customer-service__channel-item:hover {
    transform: translateY(-5px);
}

.page-index-customer-service__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-customer-service__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-customer-service__channel-text {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1em;
}

.page-index-customer-service__channel-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-customer-service__channel-button:hover {
    background-color: #e6c200;
}

/* FAQ Section */
.page-index-customer-service__faq {
    padding: 60px 20px;
    background-color: #0A2342;
}

.page-index-customer-service__faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.page-index-customer-service__faq-item {
    background-color: #1A3A61;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 0;
}

.page-index-customer-service__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-index-customer-service__faq-answer {
    padding: 0 25px 20px;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-customer-service__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-index-customer-service__faq-answer p {
    margin-bottom: 15px;
}

.page-index-customer-service__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-customer-service__faq-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsible Gaming Section */
.page-index-customer-service__responsible-gaming {
    padding: 60px 20px;
    background-color: #0F2D52;
}

.page-index-customer-service__gaming-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.page-index-customer-service__principle-item {
    background-color: #1A3A61;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service__principle-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.page-index-customer-service__principle-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-customer-service__principle-item p {
    color: #cccccc;
    font-size: 1em;
}

.page-index-customer-service__gaming-call-to-action {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-customer-service__responsible-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-customer-service__responsible-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Contact Us Section */
.page-index-customer-service__contact-us {
    padding: 60px 20px;
    background-color: #0A2342;
    text-align: center;
}

.page-index-customer-service__contact-info {
    max-width: 600px;
    margin: 0 auto 40px;
    background-color: #1A3A61;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-customer-service__contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-index-customer-service__contact-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-customer-service__contact-info a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-index-customer-service__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-customer-service__contact-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-customer-service__hero {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        padding: 100px 40px;
    }

    .page-index-customer-service__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-index-customer-service__hero-image-wrapper {
        flex: 1;
        margin-top: 0;
    }

    .page-index-customer-service__hero-title {
        font-size: 4em;
    }

    .page-index-customer-service__hero-description {
        font-size: 1.3em;
    }

    .page-index-customer-service__channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-index-customer-service__gaming-principles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-index-customer-service__channel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}