
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 70px auto;
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 15px;
}
.subtitle a {
    color: #000;
    text-decoration: underline;
}

/* Tabs */
.tabs {
    display: inline-flex;
    gap: 12px;
    margin-bottom: 30px;
}

.tab {
    border: 1px solid #ccc;
    background: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}
.tab.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* FAQ items */
.faq-container {
    text-align: left;
    margin-top: 20px;
}

details {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

summary {
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none; /* Hide default arrow */
}

details[open] summary {
    color: #000;
}

details p {
    margin-top: 10px;
    color: #444;
    line-height: 1.6;
}


