/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark backgrounds */
    background-color: #1A2B4C; /* Main background color */
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-support__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1A2B4C; /* Dark blue background */
    position: relative;
    overflow: hidden;
}

.page-support__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 3em;
    color: #FFD700; /* Gold text for contrast */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    color: #e0e0e0; /* Slightly lighter white for readability */
    margin-bottom: 30px;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Buttons */
.page-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A2B4C; /* Dark blue text */
}

.page-support__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #0d1a33;
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A2B4C; /* Dark blue text */
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold text */
    text-align: center;
    margin-bottom: 15px;
    padding-top: 40px;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #e0e0e0; /* Lighter white text */
    text-align: center;
    margin-bottom: 40px;
}

/* FAQ Section */
.page-support__faq {
    background-color: #1A2B4C; /* Dark blue background */
    padding: 60px 0;
    position: relative;
}

.page-support__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-item {
    background-color: #2b3e60; /* Slightly lighter dark blue for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
    padding: 20px;
    font-size: 1.2em;
    color: #FFD700; /* Gold text */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: #2b3e60; /* Ensure question background is consistent */
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 20px;
    font-size: 1em;
    color: #e0e0e0; /* Lighter white text */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 20px 20px;
}

.page-support__faq-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 8px;
    opacity: 0.7;
}

/* Contact Section */
.page-support__contact {
    background-color: #1A2B4C; /* Dark blue background */
    padding: 60px 0;
    text-align: center;
}

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

.page-support__contact-item {
    background-color: #2b3e60; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__icon {
    font-size: 3em;
    color: #FFD700; /* Gold icon color */
    margin-bottom: 20px;
}

/* Simple icon placeholders (can be replaced with actual SVG/FontAwesome later) */
.page-support__icon--chat::before { content: '\1F4AC'; } /* Unicode for speech bubble */
.page-support__icon--email::before { content: '\1F4E7'; } /* Unicode for email */
.page-support__icon--phone::before { content: '\1F4DE'; } /* Unicode for telephone receiver */

.page-support__contact-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold text */
    margin-bottom: 10px;
}

.page-support__contact-description {
    color: #e0e0e0; /* Lighter white text */
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align at bottom */
}

.page-support__contact-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 8px;
    opacity: 0.7;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
    background-color: #1A2B4C; /* Dark blue background */
    padding: 60px 0 80px;
    text-align: center;
}

.page-support__responsible-gaming p {
    color: #e0e0e0; /* Lighter white text */
    max-width: 800px;
    margin: 20px auto 30px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 20px;
    }

    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 40px 15px;
    }

    .page-support__hero-title {
        font-size: 2em;
    }

    .page-support__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__contact-grid {
        grid-template-columns: 1fr;
    }
}