/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 40px 0;
}

/* Header */
.header {
    background: #000;
    color: white;
    padding: 12px 0;
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.nav-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Hero */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Buttons */
.btn, .btn-secondary {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.email-link {
    color: #2575fc;
    font-weight: bold;
    text-decoration: none;
}

.btn {
    background: white;
    color: #2575fc;
}

.btn-secondary {
    background: #000;
    color: white;
}

/* Sections */
.section {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

.centered {
    text-align: center;
}

/* Cards */
.card {
    padding: 20px;
    margin: 20px auto;
    border-radius: 12px;
    background: #f6f6f6;
}

/* Features */
.features-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #f1f1f1;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    padding: 14px;
    background: #fafafa;
    display: none;
    border-top: 1px solid #ddd;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: white;
}

/* Mobile Header Fix */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 8px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .logo {
        margin-bottom: 5px;
    }
}