
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff; /* White background for the body */
    color: #000000; /* Black text color for general content */
    margin: 0;
}

.header {
    width: 100%;
    background-color: #4f4a4a; /* Dark gray color for header background */
    padding: 20px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    color: #3a3a9d; /* Dark blue color for header text to match screenshot */
}

.nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 15px;
    background-color: #d9d9d9; /* Light gray background for nav bar */
}

.nav a {
    text-decoration: none;
    color: #3333cc; /* Blue color for navigation text to match screenshot */
    font-weight: bold;
}

.main-content {
    width: 80%;
    margin: 20px 0;
}

.intro, .faq-section, .about-section, .contact-section, .login-section, .resources-section {
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    background-color: #ffffff; /* White background for content sections */
}

.intro p, .faq-section p, .about-section p, .contact-section p, .login-section p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact-section form, .login-section form {
    display: flex;
    flex-direction: column;
}

.contact-section label, .login-section label {
    margin-top: 15px;
    font-weight: bold;
    color: #000000; /* Black color for form labels */
}

.contact-section input, .login-section input {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    border-radius: 4px;
}

button {
    padding: 12px;
    background-color: #4f4a4a; /* Dark gray button background to match screenshot */
    color: #ffffff; /* White color for button text */
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.footer {
    width: 100%;
    padding: 15px;
    background-color: #bfbfbf; /* Light gray background for footer */
    text-align: center;
    font-size: 14px;
    color: #000000; /* Black color for footer text */
}
