* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}
.container-fl {
    margin-top: 7rem;
    background-color: #008500;
}
.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: #222;
}

.faq-category {
    font-size: 1.3em;
    margin: 20px 0 10px;
    font-weight: bold;
    color: #008500;
    border-bottom: 2px solid #008500;
    padding-bottom: 5px;
}

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

.faq-question {
    background-color: #008500;
    color: #fff;
    cursor: pointer;
    padding: 14px 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.faq-question:hover, .faq-question.active {
    background-color: #008500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    background: #fafafa;
    border-left: 3px solid #008500;
    border-radius: 0 0 5px 5px;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 10px 0;
}

.faq-contact {
    margin-top: 30px;
    padding: 15px;
    background-color: #008500;
    border-left: 4px solid #28a745;
    border-radius: 5px;
    text-align: center;
}

.faq-contact a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}
