/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #0078D7;
    color: white;
}

.header-title {
    font-size: 1.5em;
    font-weight: bold;
}

.header-links {
    display: flex;
    gap: 15px;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.header-links a:hover {
    background-color: white;
    color: #0078D7;
    border-radius: 5px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #0078D7;
}

/* Links */
a {
    color: #0078D7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-item {
    margin: 10px 0;
}

button {
    background-color: #0078D7;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 5px;
}

button:hover {
    background-color: #005BB5;
}

.answer {
    display: none;
    margin-left: 20px;
    font-style: italic;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
}
