.page-support {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A2342;
}

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

.page-support__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-support__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-support__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

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

.page-support__btn--text:hover {
    color: #E6C200;
}

.page-support__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #1A3A60;
    padding-bottom: 80px;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-support__faq-question {
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

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

.page-support__faq-question:hover {
    background-color: #1A3A60;
}

.page-support__faq-answer {
    padding: 0 25px 20px;
    color: #E0E0E0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 25px 20px;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
}

.page-support__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.page-support__contact-section {
    background-color: #0A2342;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__contact-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

.page-support__contact-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

.page-support__contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-support__contact-method {
    background-color: #1A3A60;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__contact-method:hover {
    transform: translateY(-5px);
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-support__contact-method h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-support__contact-method p {
    color: #E0E0E0;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.page-support__responsible-gaming .page-support__description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

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

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

    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer {
        padding: 0 20px 15px;
    }

    .page-support__contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .page-support__contact-method {
        max-width: 90%;
    }

    .page-support__hero-image,
    .page-support__contact-image {
        display: none;
    }
}

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

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

    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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