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

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #5a8872;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav a {
    margin: 0 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav a.active,
.nav a:hover {
    color: #bfffa5;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: #fff;
    color: #5a8872;
}

.hero {
    background-color: #5a8872;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.hero-content .subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: #2e4b34;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1f3523;
}

.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-size: 28px;
    margin: 15px 0;
}

.about-text p {
    margin-bottom: 15px;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
}

.subtitle.green {
    color: #5a8872;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}

.who {
    padding: 80px 0;
    background: #fff;
}

.who-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.who-img {
    flex: 1;
    min-width: 300px;
}

.who-img img {
    width: 100%;
    border-radius: 10px;
}

.who-text {
    flex: 1;
    min-width: 280px;
}

.who-text h2 {
    font-size: 28px;
    margin: 15px 0;
}

.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.center {
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-outline.green {
    border: 1px solid #2e4b34;
    color: #2e4b34;
    background: transparent;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 40px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline.green:hover {
    background-color: #2e4b34;
    color: #fff;
}

@media (max-width: 768px) {
    .who-grid,
    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }
}

.consult-form-section {
    background-color: #5a8872;
    padding: 80px 20px;
    text-align: center;
}

.consult-form {
    background: #fff;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consult-form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.consult-form button {
    background: #3f704d;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.consult-form button:hover {
    background: #355e41;
}

.footer {
    background: #5a8872;
    color: #fff;
    padding: 60px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-left h3 {
    margin-bottom: 15px;
}

.footer-left a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin: 5px 0;
}

.footer-left .socials a {
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
    color: #fff;
}

.footer-right h4 {
    margin-bottom: 10px;
}

.footer-right p {
    font-size: 14px;
    margin: 8px 0;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.thankyou {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    color: #2b2f29;
}

.thankyou h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.thankyou p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 16px;
}

@media (max-width: 768px) {
    .thankyou h2 {
        font-size: 24px;
    }

    .thankyou p {
        font-size: 16px;
    }

    .nav {
        display: none;
    }
}
