/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Main text color */
    background-color: #F8F8F8; /* Light background for readability */
}

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

.page-support__hero {
    background: linear-gradient(135deg, #0A2463, #3B5A9A); /* Dark blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-support__hero .page-support__container {
    position: relative;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-support__button {
    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;
}

.page-support__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    font-size: 1.1em;
}

.page-support__button--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
}

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support__section-intro {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #333;
}

.page-support__faq {
    padding: 60px 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-support__faq-item {
    background-color: #F9F9F9;
    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.3em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.page-support__button--secondary {
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    font-size: 1.1em;
}

.page-support__button--secondary:hover {
    background-color: #1A3E7F; /* Slightly lighter dark blue on hover */
}

.page-support__contact {
    padding: 60px 0;
    background-color: #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-support__contact-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-support__contact-heading {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__contact-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-support__button--link {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #0A2463;
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__button--link:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-support__responsible-gaming,
.page-support__vip-benefits {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__responsible-gaming {
    background-color: #E9F0F8;
}

.page-support__vip-benefits {
    background-color: #FFF8E1; /* Light gold background */
}

.page-support__responsible-gaming-image,
.page-support__vip-benefits-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support__responsible-gaming .page-support__container,
.page-support__vip-benefits .page-support__container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description,
    .page-support__section-intro {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__faq-grid,
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__contact-heading {
        font-size: 1.3em;
    }
}