/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #ffa500;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    color: white;
}

.content {
    padding: 20px;
}

.faq {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h2 {
    font-size: 18px; /* Adjust font size as needed */
    color: black;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.faq-content {
    display: none;
    margin-top: 10px;
}

.footer {
    background-color: #ffa500; /* Match header background */
    color: white;
    padding: 20px;
    text-align: center;
}

.more-faqs h3 {
    margin: 0 0 10px 0;
}

.faq-links a {
    color: white;
    display: block;
    margin: 5px 0;
    text-decoration: none;
}

.faq-links a:hover {
    text-decoration: underline;
}


/* Mobile styles */
@media only screen and (max-width: 600px) {
    .header {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8em; /* Adjust font size */
    }

    .content {
        padding: 15px;
    }

    .faq {
        padding: 15px;
    }

    .faq-item h2 {
        font-size: 16px; /* Adjust font size */
    }

    .footer {
        padding: 15px;
    }
}
