/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero {
    background-color: #0A2463; /* Main color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1); /* Auxiliary color with transparency */
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-support__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15); /* Auxiliary color with transparency */
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 0;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color */
    position: relative;
    z-index: 1;
}

.page-support__hero-description {
    font-size: 1.2em;
    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, color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #0A2463; /* Main color */
    border: 2px solid #FFD700;
}

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

.page-support__btn--secondary {
    background-color: #0A2463; /* Main color */
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
    background-color: #1a3a7f;
    border-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-support__faq-section, .page-support__contact-methods, .page-support__responsible-gambling {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-support__faq-section {
    background-color: #fff;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Main color */
    text-align: center;
    margin-bottom: 20px;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* FAQ Section */
.page-support__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
}

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

.page-support__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700; /* Auxiliary color */
    transition: transform 0.3s ease;
}

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

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

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

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

.page-support__link {
    color: #0A2463; /* Main color */
    text-decoration: none;
    font-weight: bold;
}

.page-support__link:hover {
    text-decoration: underline;
    color: #FFD700; /* Auxiliary color */
}

/* Contact Methods Section */
.page-support__contact-methods {
    background-color: #f0f4f8; /* Light background for contrast */
}

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

.page-support__method-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-support__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-support__method-title {
    font-size: 1.8em;
    color: #0A2463; /* Main color */
    margin-bottom: 15px;
}

.page-support__method-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    min-height: 60px; /* Ensure consistent card height */
}

/* Responsible Gambling Section */
.page-support__responsible-gambling {
    background-color: #fff;
    text-align: center;
}

.page-support__responsible-links p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

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

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

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

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

    .page-support__section-intro {
        font-size: 0.95em;
    }

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

    .page-support__method-title {
        font-size: 1.5em;
    }
}

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

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

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

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

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

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

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

    .page-support__method-icon {
        width: 60px;
        height: 60px;
    }
}