/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 3rem;
}

header h1 {
    color: #b19cd9; /* Purple highlight */
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.hero h2 {
    color: #b19cd9;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #b19cd9; /* Purple highlight */
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #9a7fb8;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding: 1rem;
    border-top: 1px solid #333;
    opacity: 0.7;
}

footer p {
    font-size: 0.9rem;
}









/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    color: #b19cd9;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #b19cd9;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 2rem;
}
