/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F4F4F4; /* Light Background */
}

/* ---- HEADER ---- */
header {
    background-color: #2E8B57; /* Dark Green */
    color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---- MAIN CONTENT ---- */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Section */
.faq h2 {
    font-size: 28px;
    color: #2E8B57; /* Dark Green */
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    background-color: white;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    color: #2E8B57;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.faq-item a {
    color: #2E8B57;
    text-decoration: none;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ---- FOOTER ---- */
footer {
    background-color: #2E8B57; /* Dark Green */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: 30px;
}

footer p {
    margin: 0;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
