.page-support {
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding: 100px 0;
    padding-top: var(--header-offset, 120px);
    background-color: #1a1a1a;
    text-align: center;
    overflow: hidden;
}

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

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

.page-support__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-support__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

/* Section Titles and Intros */
.page-support__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

/* Buttons */
.page-support__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
    background: #1e87b5;
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Dark Section */
.page-support__dark-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #ffffff;
}

/* Contact Methods */
.page-support__contact-methods .page-support__section-intro {
    color: #ffffff;
}

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

.page-support__method-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}

.page-support__method-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__method-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__method-description {
    color: #f0f0f0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__method-button {
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #ffffff;
}

.page-support__faq-list {
    margin-top: 50px;
}

.page-support__faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #f0f0f0;
}

.page-support__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important;
    padding: 20px;
    padding-top: 0;
}

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

/* Common Issues */
.page-support__common-issues {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #ffffff;
}

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

.page-support__issue-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.page-support__issue-card .page-support__card-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__issue-card .page-support__card-description {
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__issue-card .page-support__card-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__issue-card .page-support__card-link:hover {
    color: #1e87b5;
    text-decoration: underline;
}

.page-support__center-text {
    text-align: center;
    margin-top: 50px;
}

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

/* Responsible Gaming */
.page-support__responsible-gaming {
    padding: 80px 0;
}

.page-support__responsible-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-support__responsible-text {
    flex: 1;
}

.page-support__responsible-subtitle {
    font-size: 2em;
    color: #26A9E0;
    margin-bottom: 20px;
}

.page-support__responsible-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-support__responsible-text ul li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #26A9E0;
    border-radius: 5px;
    color: #f0f0f0;
}

.page-support__responsible-text ul li a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-support__responsible-text ul li a:hover {
    text-decoration: underline;
}

.page-support__responsible-image-wrapper {
    flex: 1;
    min-width: 400px;
}

.page-support__responsible-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Feedback Form */
.page-support__feedback {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #ffffff;
}

.page-support__feedback-form-wrapper {
    max-width: 700px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-support__form-group {
    margin-bottom: 20px;
}

.page-support__form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-support__form-input,
.page-support__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
    color: #aaaaaa;
}

.page-support__form-input:focus,
.page-support__form-textarea:focus {
    border-color: #26A9E0;
    outline: none;
}

.page-support__form-textarea {
    resize: vertical;
}

.page-support__form-button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Final CTA */
.page-support__cta-final {
    padding: 80px 0;
}

.page-support__cta-final .page-support__section-intro {
    color: #ffffff;
}

/* General Link Styling */
.page-support a {
    color: #26A9E0;
    text-decoration: none;
}

.page-support a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__responsible-content {
        flex-direction: column;
        text-align: center;
    }
    .page-support__responsible-text ul {
        text-align: left;
    }
    .page-support__responsible-image-wrapper {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Images */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__method-icon {
        width: 250px !important;
        height: 250px !important;
    }

    /* Buttons */
    .page-support__cta-button,
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* General container padding for mobile */
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__feedback-form-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__methods-grid,
    .page-support__issues-grid {
        grid-template-columns: 1fr;
    }

    .page-support__method-card,
    .page-support__issue-card {
        min-height: auto;
    }

    .page-support__responsible-text ul {
        padding-left: 0;
    }
}