/* Support page specific styles */
.support-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.support-title {
    font-family: 'MiSans-Bold', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF6B9C, #FF9A5A, #FFD166, #06D6A0, #118AB2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.support-subtitle {
    font-family: 'MiSans-Medium', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'MiSans-Bold', sans-serif;
    color: #ffffff;
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    font-family: 'MiSans-Medium', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.support-content p {
    font-family: 'MiSans-Regular', sans-serif;
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.support-content ul,
.support-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.support-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 156, 0.1), rgba(255, 154, 90, 0.1));
    padding: 25px;
    border-left: 4px solid #FF6B9C;
    margin: 30px 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 156, 0.2);
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-left: 4px solid #06D6A0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'MiSans-Medium', sans-serif;
    font-weight: 600;
    color: #06D6A0;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-section {
    background: linear-gradient(135deg, rgba(17, 138, 178, 0.1), rgba(6, 214, 160, 0.1));
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
    border: 1px solid rgba(17, 138, 178, 0.2);
    backdrop-filter: blur(10px);
}

.contact-section h2 {
    color: #118AB2;
    margin-bottom: 20px;
}

.email-link {
    color: #06D6A0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #FFD166;
    text-decoration: underline;
}



.footer-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Navigation active state */
.nav-links a.active {
    color: #06D6A0;
}

.nav-links a.active:after {
    width: 100%;
}

@media (max-width: 768px) {
    .support-container {
        margin: 20px;
        padding: 80px 20px 40px;
    }

    .support-title {
        font-size: 36px;
    }

    .support-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }



    .faq-item {
        padding: 20px;
    }

    .contact-section {
        padding: 25px;
    }

    .highlight-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .support-container {
        margin: 10px;
        padding: 60px 15px 30px;
    }

    .support-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .support-content p,
    .support-content li {
        font-size: 14px;
    }
}