
/* FAQ Header */
.faq-header {
    text-align: center;
    padding: 2rem 1rem;
    /* background: #f5f5f5; */
}

.faq-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.faq-header p {
    font-size: 1.2rem;
    color: #555;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.2rem;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.icon {
    position: absolute;
    right: 1rem;
    font-weight: bold;
    transition: transform 0.3s;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 1rem;
    background: #fafafa;
    border-top: 1px solid #ddd;
}

.faq-answer p {
    padding: 1rem 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }
}
.terms-header {
    color: rgb(15, 15, 15);
    padding: 40px 20px;
    text-align: center;
}

.terms-header h1 {
    margin: 0;
    font-size: 2.5em;
}

.terms-header p {
    margin-top: 10px;
    font-size: 1.2em;
}

.terms-container {
    padding: 40px 20px;
}

.terms-section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    font-size: 1.6em;
    color: #0073e6;
    margin-bottom: 10px;
}

.terms-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}
