/* style/support.css */

/* General Page Styles */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text for contrast with dark background */
    background-color: #0A2463; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-support__section-title,
.page-support__hero-title,
.page-support__cta-title {
    color: #FFD700; /* Gold for main titles */
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description,
.page-support__hero-subtitle,
.page-support__cta-subtitle {
    color: #B0C4DE; /* Lighter blue for descriptions */
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

.page-support__keyword {
    color: #FFD700; /* Gold to highlight keywords */
    font-weight: bold;
}

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

.page-support__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

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

.page-support__link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__link:hover {
    color: #E6C200;
}

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E7A 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-support__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin-bottom: 40px;
    color: #B0C4DE;
}

.page-support__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-support__faq {
    padding: 60px 0;
    background-color: #071C4B; /* Slightly lighter dark blue */
}

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

.page-support__faq-item {
    background-color: #123067; /* Even lighter dark blue for items */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #1A3E7A;
}

.page-support__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-support__faq-answer {
    color: #E0E0E0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust based on max content */
    padding-top: 15px;
}

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

.page-support__faq-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: #0A2463;
}

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

.page-support__contact-item {
    background-color: #123067;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #1A3E7A;
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-support__contact-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-support__contact-text {
    color: #B0C4DE;
    margin-bottom: 20px;
}

.page-support__contact-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 700px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsible Gambling Section */
.page-support__responsible-gambling {
    padding: 60px 0;
    background-color: #071C4B;
}

.page-support__responsible-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-support__responsible-list li {
    background-color: #123067;
    color: #E0E0E0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-support__responsible-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 650px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Bottom Section */
.page-support__cta-bottom {
    background: linear-gradient(135deg, #1A3E7A 0%, #0A2463 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-support__cta-image {
    margin-top: 50px;
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

    .page-support__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-support__btn {
        width: 80%;
        max-width: 300px;
    }
}

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

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

    .page-support__faq-item,
    .page-support__contact-item {
        padding: 20px;
    }
}