/* style/support.css */
.page-support {
    color: #333333; /* Dark text for default (white) body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__hero-section {
    background-color: #0A192F; /* Main brand color */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color */
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-support__button {
    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;
    white-space: nowrap;
}

.page-support__button--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
    background-color: #e6c200;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

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

.page-support__faq-section,
.page-support__contact-section,
.page-support__responsible-gaming-section,
.page-support__resources-section {
    padding: 60px 0;
}

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

.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: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-left: 5px solid #FFD700;
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #0A192F;
    margin-bottom: 15px;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #666666;
}

.page-support__inline-link {
    color: #0A192F;
    text-decoration: underline;
    font-weight: bold;
}

.page-support__inline-link:hover {
    color: #FFD700;
}

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

.page-support__contact-method {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-bottom: 5px solid #0A192F;
}

.page-support__contact-heading {
    font-size: 1.5em;
    color: #0A192F;
    margin-bottom: 10px;
}

.page-support__contact-description {
    color: #666666;
    margin-bottom: 20px;
}

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

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

.page-support__responsible-gaming-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-support__responsible-gaming-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555555;
}

.page-support__responsible-gaming-list li {
    margin-bottom: 10px;
}

.page-support__responsible-gaming-list strong {
    color: #0A192F;
}

.page-support__button--outline {
    background-color: transparent;
    color: #0A192F;
    border: 2px solid #0A192F;
}

.page-support__button--outline:hover {
    background-color: #0A192F;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-support__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-top: 40px; /* Space above image */
}

.page-support__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-support__resources-section {
    background-color: #f0f0f0;
}

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

.page-support__resource-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-right: 5px solid #FFD700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__resource-title {
    font-size: 1.3em;
    color: #0A192F;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-support__resource-title a {
    color: #0A192F;
    text-decoration: none;
}

.page-support__resource-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-support__resource-description {
    color: #666666;
    font-size: 0.95em;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 60px 20px;
        flex-direction: column;
    }
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__button {
        width: 100%;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-intro {
        font-size: 1em;
    }
    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__resource-grid {
        grid-template-columns: 1fr;
    }
    .page-support__image {
        max-width: 100%;
        height: auto; /* Ensure images scale correctly */
    }
    .page-support__responsible-gaming-content {
        padding: 30px;
    }
    /* Ensure content area does not cause horizontal scroll */
    .page-support {
        overflow-x: hidden;
    }
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__faq-item,
    .page-support__contact-method,
    .page-support__resource-card {
        padding: 20px;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__contact-heading {
        font-size: 1.3em;
    }
}