/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text similar to terms page */
}

/* Header */
.header {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Back Link */
.back-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
}

/* Questions */
.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    color: #007bff;
}

/* Answers */
.faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    display: none;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        width: 95%;
        padding: 20px;
    }

    .header h1 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
