.page-support {
    color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-support__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-support__hero-description {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-support__button--register {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-support__button--register:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-support__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-support__button--login:hover {
    background-color: #e0a53a;
    border-color: #e0a53a;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-support__why-us-section, 
.page-support__faq-section, 
.page-support__guides-section, 
.page-support__contact-section, 
.page-support__responsible-gaming-section, 
.page-support__security-section, 
.page-support__stay-updated-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__why-us-section {
    background-color: #FFFFFF;
}

.page-support__why-us-container, 
.page-support__faq-container, 
.page-support__guides-container, 
.page-support__contact-container, 
.page-support__responsible-gaming-container, 
.page-support__security-container, 
.page-support__stay-updated-container {
    max-width: 1000px;
    margin: 0 auto;
}

h2.page-support__why-us-title, 
h2.page-support__faq-title, 
h2.page-support__guides-title, 
h2.page-support__contact-title, 
h2.page-support__responsible-gaming-title, 
h2.page-support__security-title, 
h2.page-support__stay-updated-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-support__why-us-text, 
.page-support__faq-intro-text, 
.page-support__guides-intro-text, 
.page-support__contact-intro-text, 
.page-support__responsible-gaming-intro-text, 
.page-support__security-intro-text, 
.page-support__stay-updated-intro-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
    text-align: center;
    margin-bottom: 30px;
}

.page-support__why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-support__why-us-list-item {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FCBC45;
    font-size: 1em;
    line-height: 1.6;
    color: #444444;
    text-align: left;
}

.page-support__why-us-list-item strong {
    color: #000000;
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

.page-support__faq-image, .page-support__guides-image, .page-support__contact-image, .page-support__responsible-gaming-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-category {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-category-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 15px;
}

.page-support__faq-list {
    list-style: none;
    padding: 0;
}

.page-support__faq-list-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 20px;
}

.page-support__faq-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-support__faq-list-item h4 {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.page-support__faq-list-item h4::before {
    content: '+';
    margin-right: 10px;
    font-size: 1.2em;
    color: #FCBC45;
    font-weight: bold;
}

.page-support__faq-list-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    padding-left: 25px; /* Align with h4 text */
}

.page-support__button--view-all-faq {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-support__button--view-all-faq:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-support__guide-category {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-support__guide-category-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-support__guide-category p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

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

.page-support__contact-method {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #FCBC45;
}

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

.page-support__contact-method p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

.page-support__email-link {
    color: #000000;
    text-decoration: underline;
}

.page-support__email-link:hover {
    color: #FCBC45;
}

.page-support__contact-closing-text {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}

.page-support__responsible-gaming-content, 
.page-support__security-content {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__responsible-gaming-subtitle, 
.page-support__security-subtitle {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.page-support__responsible-gaming-list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 25px;
    color: #555555;
}

.page-support__responsible-gaming-list-item {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-support__responsible-gaming-list-item strong {
    color: #000000;
}

.page-support__responsible-gaming-content p, 
.page-support__security-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

.page-support__button--learn-more {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
}

.page-support__button--learn-more:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-support__stay-updated-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-support__button--promo {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-support__button--promo:hover {
    background-color: #e0a53a;
    border-color: #e0a53a;
}

.page-support__button--blog {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-support__button--blog:hover {
    background-color: #333333;
    border-color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .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 {
        padding: 12px 20px;
        font-size: 1em;
        width: 100%;
    }

    h2.page-support__why-us-title, 
    h2.page-support__faq-title, 
    h2.page-support__guides-title, 
    h2.page-support__contact-title, 
    h2.page-support__responsible-gaming-title, 
    h2.page-support__security-title, 
    h2.page-support__stay-updated-title {
        font-size: 2em;
    }

    .page-support__why-us-list {
        grid-template-columns: 1fr;
    }

    .page-support__faq-category-title, 
    .page-support__guide-category-title, 
    .page-support__contact-method-title, 
    .page-support__responsible-gaming-subtitle, 
    .page-support__security-subtitle {
        font-size: 1.5em;
    }

    .page-support__faq-list-item h4 {
        font-size: 1.1em;
    }

    .page-support__contact-options {
        grid-template-columns: 1fr;
    }

    .page-support__stay-updated-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* Ensure content images are responsive and do not overflow */
    .page-support__hero-image, 
    .page-support__faq-image, 
    .page-support__guides-image, 
    .page-support__contact-image, 
    .page-support__responsible-gaming-image {
        max-width: 100%;
        height: auto;
    }

    /* Prevent content area from causing horizontal scroll */
    .page-support__hero-section, 
    .page-support__why-us-section, 
    .page-support__faq-section, 
    .page-support__guides-section, 
    .page-support__contact-section, 
    .page-support__responsible-gaming-section, 
    .page-support__security-section, 
    .page-support__stay-updated-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-support__why-us-container, 
    .page-support__faq-container, 
    .page-support__guides-container, 
    .page-support__contact-container, 
    .page-support__responsible-gaming-container, 
    .page-support__security-container, 
    .page-support__stay-updated-container {
        padding: 0;
    }

    /* CSS for any img within .page-support to prevent overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}