/* Support Center Styling */

.support-hero {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.support-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* FAQ Grid */
.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.faq-item h3 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 12px;
    color: #00b894;
}

.faq-item p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.6;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h3 {
    margin: 30px 0 15px;
    font-size: 20px;
    color: #2d3436;
}

.legal-content p, .legal-content li {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

/* Contact Card */
.contact-support {
    padding: 60px 0;
    text-align: center;
}

.contact-card {
    background: #2d3436;
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.btn-contact {
    display: inline-block;
    background: #00b894;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #009677;
    transform: translateY(-2px);
}

.divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 32px;
    }
}