/* Style global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1e1e2f;
    color: #ffffff;
}

header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}
header .logo {
    height: 60px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
nav ul li a:hover {
    color: #00d4ff;
}

/* Support Section */
.support .container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.support h1, .support h2 {
    text-align: center;
    margin-bottom: 20px;
}
.support-info ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
}
.support-info ul li {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-info {
    margin-top: 20px;
    text-align: center;
}
.contact-info .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00d4ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.contact-info .btn:hover {
    background: #008cba;
}

/* FAQ Section */
.faq {
    margin-top: 30px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}
.faq-item .question {
    font-weight: bold;
    color: #00d4ff;
}
.faq-item .answer {
    display: none;
    margin-top: 10px;
    color: #cccccc;
    line-height: 1.6;
}
.faq-item.active .answer {
    display: block;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #1e1e2f;
}
