.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
    padding-top: var(--header-offset, 120px);
}

.page-support__section {
    padding: 60px 20px;
    text-align: center;
}

.page-support__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-support__dark-bg {
    background-color: #1A202C;
    color: #ffffff;
}

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

.page-support__section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1A202C;
    font-weight: bold;
}

.page-support__section-title--light {
    color: #FFD700;
}

.page-support__section-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-support__section-description--light {
    color: #e0e0e0;
}

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.page-support__hero-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image {
    width: 100%;
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.page-support__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #1A202C;
}

.page-support__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1A202C;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555555;
}

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

.page-support__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__btn-primary {
    background: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-support__btn-secondary:hover {
    background: #333d4d;
    border-color: #333d4d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-support__contact-methods {
    background-color: #f8f8f8;
}

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

.page-support__method-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__method-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-support__method-title {
    font-size: 24px;
    color: #1A202C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__method-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.page-support__btn-text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__btn-text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-support__faq-section {
    background-color: #1A202C;
    color: #ffffff;
}

.page-support__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-support__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #333d4d;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #333d4d;
    border: 1px solid #4a5568;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-support__faq-question:hover {
    background: #4a5568;
    border-color: #5d687c;
}

.page-support__faq-question:active {
    background: #5d687c;
}

.page-support__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #ffffff;
}

.page-support__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

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

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #e0e0e0;
    background-color: #2c3440;
    border-radius: 0 0 5px 5px;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #e0e0e0;
}

.page-support__faq-answer .page-support__btn-text-link {
    color: #FFD700;
}

.page-support__important-links {
    background-color: #f8f8f8;
}

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

.page-support__link-card {
    display: block;
    text-align: left;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    text-decoration: none;
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__link-card-title {
    font-size: 22px;
    color: #1A202C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__link-card p {
    font-size: 16px;
    color: #666666;
}

.page-support img:not(.page-support__faq-toggle) {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 42px;
    }
    .page-support__hero-description {
        font-size: 18px;
    }
    .page-support__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-support__section {
        padding: 40px 15px;
    }

    .page-support__container {
        padding: 0 10px;
    }

    .page-support__hero-section {
        height: auto;
    }

    .page-support__hero-image {
        height: 300px;
    }

    .page-support__hero-content {
        padding: 25px;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .page-support__hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-support__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .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: 12px 20px;
        font-size: 16px;
    }

    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .page-support__method-item img {
        
        object-fit: contain !important;
    }

    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__method-item,
    .page-support__link-card,
    .page-support__faq-list,
    .page-support__faq-item,
    .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: 10px;
        padding-right: 10px;
    }

    .page-support__faq-question {
        padding: 15px;
    }
    
    .page-support__faq-question h3 {
        font-size: 16px;
        width: calc(100% - 40px);
    }
    
    .page-support__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .page-support__faq-answer {
        padding: 0 15px;
    }
    
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px !important;
    }

    .page-support__section-title {
        font-size: 28px;
    }
    .page-support__section-description {
        font-size: 16px;
    }
    .page-support__method-title {
        font-size: 20px;
    }
    .page-support__link-card-title {
        font-size: 18px;
    }
}