 *{
    margin: 0px;
    padding: 0px;
 }
 body{
    background-color: #CBE2B3;
 }
 
 .company-name{
    margin-top: 60px !important;
    width: 100%;
    max-width: 1800px;
    height: 200px;
    background-color: #4CAF50;
    overflow: hidden;
    position: relative;
 }
 .company-name-title{
    position: absolute;
    top: 30%;
    left: 40%;
 }

 .company-name-title h1{
    color: #005229;
    font-size:3.5rem;
    font-family: sans-serif;
 }
 .company-name-title p{
    color: #004723;
    font-size:1.3rem;
    font-family: sans-serif;
 }
 .company-name img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 1800px;
    filter: brightness(85%);
 }
 .faq-intro {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
    margin-bottom: 0px;
    padding-left: 40px;
    padding-right: 40px;
}
.faq-intro h1{
    color: #005229;
    font-size: 1.7rem;
}
.faq-intro p{
    font-size: ;
    margin-top: 15px;
}
.faq-category {
    color: #2a5a3b;
    border-bottom: 2px solid #4a8c5e;
    padding-bottom: 10px;
    margin-top: 30px;
}
.profit-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.profit-table th, .profit-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.profit-table th {
    background-color: #4a8c5e;
    color: white;
}
.faq-cta {
    background-color: #4a8c5e;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}
.faq-cta h3{
    padding-bottom: 5px;
}
.cta-button {
    display: inline-block;
    background-color: #2a5a3b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}
 /* FAQ Container */
 .faq-section {
    max-width: 900px;
    margin: 30px auto;
    font-family: 'Segoe UI', sans-serif;
    background-color:;
    padding: 20px;
    border-style: ;
}
.faqs{
    text-align: center;
    color: #004723;
}
/* Questions */
.faq-question {
    padding:15px;
    background: #f5f9f0;
    border-left: 4px solid #4CAF50;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
    border-radius: 4px;
    transition: all 0.3s;
}
.faq-question:hover {
    background: #e8f5e9;
}

/* Answers */
.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.show {
    padding: 15px;
    max-height: 100%;
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.comparison-table th {
    background-color: #f2f2f2;
}

/* Impact Cards */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
.impact-card {
    padding: 15px;
    border-radius: 8px;
}
.positive {
    background: #f0f8ff;
    border-top: 3px solid #4CAF50;
}
.negative {
    background: #fff0f0;
    border-top: 3px solid #f44336;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .company-name-title{
        position: absolute;
        top: 30%;
        left: 10%;
     }

}

@media (max-width: 370px) {
    .company-name-title h1{
        font-size: 2.7rem;
    }
    .company-name-title h1{
        font-size: 2rem;
    }
    .company-name-title p{
        font-size: 01rem;
    }
    .faq-intro {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .faq-intro h1{
        font-size: 7vw;
    }
    .faq-intro p{
        font-size: 5vw;
    }

    .faq-question{
        font-size: 5vw;
    }
    .faq-answer{
        font-size: 4vw;
    }

    .faq-cta h3{
        font-size: 5vw;
    }
    .faq-cta p{
        font-size: 4vw;
    }
}