```css
/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 90px 0;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #0b3d2e;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span {
    margin-right: 5px;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar a {
    color: #fff;
    margin-left: 15px;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #8fd19e;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    padding: 14px 0;
    z-index: 999;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #0b7a53;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    color: #0b3d2e;
    font-size: 19px;
    letter-spacing: 0.5px;
}

.logo-text small {
    color: #777;
    font-size: 11px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 12px;
    padding: 10px 8px !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0b7a53;
}

.nav-btn {
    padding: 10px 20px !important;
    color: #fff !important;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary {
    background: #0b7a53;
    border-color: #0b7a53;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #075c3e;
    border-color: #075c3e;
}


/* =====================================================
   HERO
===================================================== */

.hero-section {
    min-height: 650px;
    position: relative;
    background:
        linear-gradient(rgba(5, 35, 25, 0.75), rgba(5, 35, 25, 0.75)),
        url("../images/hero.jpg") center center / cover no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    max-width: 750px;
    color: #fff;
    padding: 80px 0;
}

.hero-small-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #9de3bd;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #8fd19e;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    color: #f1f1f1;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    border-radius: 5px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading span {
    display: inline-block;
    color: #0b7a53;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-heading h2 strong {
    color: #0b7a53;
}

.section-heading p {
    color: #777;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: #fff;
}

.about-image {
    position: relative;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-placeholder {
    position: absolute;
    inset: 0;
    background: #e9f4ef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0b7a53;
}

.about-image-placeholder i {
    font-size: 70px;
    margin-bottom: 15px;
}

.about-image-placeholder span {
    font-weight: 600;
}


/* =====================================================
   BUSINESS
===================================================== */

.business-section {
    background: #f6f9f7;
}

.business-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #e8eee9;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.business-icon {
    width: 65px;
    height: 65px;
    background: #e8f5ee;
    color: #0b7a53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.business-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
    color: #222;
}

.business-card p {
    color: #777;
    margin-bottom: 20px;
}

.business-card a {
    color: #0b7a53;
    font-weight: 600;
}

.business-card a i {
    margin-left: 5px;
    transition: 0.3s;
}

.business-card a:hover i {
    margin-left: 10px;
}


/* =====================================================
   STATISTICS
===================================================== */

.stats-section {
    background: #0b3d2e;
    padding: 65px 0;
    color: #fff;
}

.stat-item {
    padding: 10px;
}

.stat-item i {
    font-size: 30px;
    color: #9de3bd;
    margin-bottom: 12px;
}

.stat-item h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 3px;
}

.stat-item p {
    margin: 0;
    color: #d8e8df;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    background: #fff;
}

.product-card {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 210px;
    background: #edf6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b7a53;
    font-size: 65px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-content p {
    color: #777;
}

.product-content a {
    color: #0b7a53;
    font-weight: 600;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    background:
        linear-gradient(rgba(11, 61, 46, 0.93), rgba(11, 61, 46, 0.93)),
        url("../images/cta.jpg") center / cover;

    padding: 90px 0;
    color: #fff;
}

.cta-content {
    max-width: 750px;
    margin: auto;
}

.cta-content span {
    color: #9de3bd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-content h2 {
    font-size: 42px;
    margin: 15px 0;
}

.cta-content p {
    color: #d9e8df;
    margin-bottom: 25px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #092c22;
    color: #d4dfda;
    padding-top: 70px;
}

.footer-logo {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    color: #b9c8c1;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #b9c8c1;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #9de3bd;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid #49675b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #0b7a53;
    border-color: #0b7a53;
}

.footer-contact p {
    margin-bottom: 13px;
}

.footer-contact i {
    width: 25px;
    color: #9de3bd;
}

.footer-bo
```
