/* style/support.css */
.page-support {
    color: #ffffff;
    background-color: #000;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-support__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1A202C 0%, #3a475e 100%); /* Darker gradient for hero */
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Default for desktop if shared doesn't apply to body */
}

.page-support__hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #f0f0f0;
}

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

.page-support__section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700; /* Gold accent */
}

.page-support__text-block {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: justify;
}

.page-support__about-support, .page-support__security-responsible {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 8px;
}

.page-support__about-support .page-support__section-title,
.page-support__security-responsible .page-support__section-title {
    color: #FFD700;
}

.page-support__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-support__image-full {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-support__contact-methods {
    padding: 60px 0;
    background-color: #1A202C;
    margin-bottom: 40px;
}

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

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

.page-support__card-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__card-description {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-support__contact-note {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    color: #aaaaaa;
}

.page-support__faq-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.page-support__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1A202C;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-support__faq-question:hover {
    background: #2a3447;
    border-color: #FFD700;
}

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

.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: 30px;
    height: 30px;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg); /* Change to X or rotate for active state */
    color: #FFD700;
}

.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 25px;
    opacity: 0;
    color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-answer p {
    margin-bottom: 15px;
    color: #cccccc;
}

.page-support__security-responsible {
    background-color: #1A202C;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-support__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-support__quick-links {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

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

.page-support__quick-link {
    display: block;
    background-color: #1A202C;
    color: #FFD700;
    text-align: center;
    padding: 18px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 1px solid #FFD700;
    box-sizing: border-box;
}

.page-support__quick-link:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-5px);
}

.page-support__final-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1A202C, #3a475e);
    border-radius: 8px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping for default state */
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-support__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #1A202C;
}

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

.page-support__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-support__btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.page-support__btn-small {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 36px;
    }

    .page-support__hero-description {
        font-size: 17px;
    }
}