/* style/index-customer-support-info.css */

/* General Styles for the Page Content */
.page-index-customer-support-info {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-index-customer-support-info__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-index-customer-support-info__section-description {
    font-size: 1.1em;
    color: #E0E0E0; /* Slightly lighter white for descriptions */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-index-customer-support-info__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-customer-support-info__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-index-customer-support-info__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-index-customer-support-info__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-index-customer-support-info__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-index-customer-support-info__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

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

.page-index-customer-support-info__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-customer-support-info__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-index-customer-support-info__btn--text {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-index-customer-support-info__btn--text:hover {
    color: #e6c200;
}

/* Contact Methods Section */
.page-index-customer-support-info__contact-methods {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-index-customer-support-info__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-customer-support-info__method-item {
    background-color: #1a2f4a; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-customer-support-info__method-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-index-customer-support-info__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

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

.page-index-customer-support-info__method-text {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-index-customer-support-info__faq-section {
    padding: 80px 0;
    background-color: #11223b;
}

.page-index-customer-support-info__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-index-customer-support-info__category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-index-customer-support-info__accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-index-customer-support-info__accordion-header {
    width: 100%;
    background-color: #2a4a70; /* Slightly lighter dark blue for header */
    color: #FFD700;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-customer-support-info__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-customer-support-info__accordion-header.active {
    background-color: #3a5a80;
}

.page-index-customer-support-info__accordion-header.active::after {
    transform: rotate(45deg);
}

.page-index-customer-support-info__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #1a2f4a;
    color: #CCCCCC;
}

.page-index-customer-support-info__accordion-content.open {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-index-customer-support-info__accordion-content p {
    margin-bottom: 15px;
}

.page-index-customer-support-info__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-customer-support-info__accordion-content a:hover {
    text-decoration: underline;
    color: #e6c200;
}

/* Guides Section */
.page-index-customer-support-info__guides-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-index-customer-support-info__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-customer-support-info__guide-item {
    background-color: #1a2f4a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-customer-support-info__guide-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-index-customer-support-info__guide-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-index-customer-support-info__guide-text {
    font-size: 0.95em;
    color: #CCCCCC;
    margin-bottom: 20px;
    min-height: 70px; /* Ensure consistent height */
}

/* Responsible Gambling Section */
.page-index-customer-support-info__responsible-gambling {
    padding: 80px 0;
    background-color: #11223b;
}

.page-index-customer-support-info__responsible-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.page-index-customer-support-info__responsible-text {
    flex: 1;
    min-width: 300px;
}

.page-index-customer-support-info__responsible-text p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-index-customer-support-info__responsible-text ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-customer-support-info__responsible-text ul li {
    margin-bottom: 8px;
}

.page-index-customer-support-info__responsible-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-index-customer-support-info__cta-section {
    padding: 80px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-index-customer-support-info__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

    .page-index-customer-support-info__hero-description {
        font-size: 1.1em;
    }

    .page-index-customer-support-info__hero-actions,
    .page-index-customer-support-info__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-customer-support-info__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-index-customer-support-info__section-title {
        font-size: 2em;
    }

    .page-index-customer-support-info__section-description {
        font-size: 1em;
    }

    .page-index-customer-support-info__method-grid,
    .page-index-customer-support-info__guide-grid {
        grid-template-columns: 1fr;
    }

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

    .page-index-customer-support-info__accordion-content.open {
        padding: 15px 20px;
    }

    .page-index-customer-support-info__responsible-content {
        flex-direction: column;
    }

    .page-index-customer-support-info__responsible-image {
        max-width: 100%;
    }
}

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

    .page-index-customer-support-info__hero-description {
        font-size: 0.95em;
    }

    .page-index-customer-support-info__section-title {
        font-size: 1.8em;
    }

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