body {
    font-family: 'Arial', sans-serif;
    background-color: #EDD67C;
    margin: 0;
    padding: 0;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #E2BC29; /* Change the background color to yellow */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: left;
    color: white; /* Change the header text color to white */
    margin-bottom: 30px;
}

p {
	color: white
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h2 {
    font-size: 1.2em;
    color: white; /* Change the question text color to white */
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-item p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    display: none; /* Initially hide the answer */
    color: white; /* Change the answer text color to white */
}

.faq-item h2:hover {
    color: #ffcc00; /* Change hover color if desired, adjust for better visibility */
}

/* Show the answer when the question is clicked */
.faq-item.active p {
    display: block;
}

/* Centered Image Container */
.logo-container {
    margin-bottom: 20px; /* Space between image and title */
}

.logo-container img {
    width: 60%; /* Scale the image to 60% of its original size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto; /* Center the image horizontally */
}

