    @font-face {
  font-family: 'FuturaCyrillic';
  src: url('../fonts/FuturaCyrillicMedium.ttf') format('truetype');
  font-style: normal;
}

    @font-face {
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'FuturaCyrillic';
}

body {
     background: #edf5f4; /* Light green/white like screenshot */
    color: #fff;
    line-height: 1.6;
}

/* ================= HEADER ================= */
.header {
    width: 100%;
    padding: 1rem 0;
    background: #edf5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'FuturaCyrillic';
}

.logo {
    width: 10rem;
    max-width: 30vw;
}

/* ================= MAIN WHITE OUTER AREA ================= */
.forest-container {
    width: 100%;
    padding: 1vh 5vw;
    background: #edf5f4;
}

/* ================= INNER DARK AREA (Rounded Section) ================= */
.forest-box {
    background: #073b36;      /* Dark forest green like reference */
    border-radius: 3rem;
    padding: 6vh 5vw;
    display: flex;
    gap: 4vw;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ================= LEFT TEXT ================= */
.forest-text {
    flex: 1 1 45%;
    color: white;
}

.sub-title {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.forest-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0 1.5rem 0;
}

.desc {
    margin: 1rem 0;
    font-size: 1.15rem;
    max-width: 45rem;
    opacity: 0.95;
    font-family: 'Poppins-Regular';
}

/* ================= BUTTONS ================= */
.btn-group {
    display: flex;
    gap: 1rem;
    margin: 2rem 0rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 1rem;
    border-radius: 2rem;
    font-weight: bold;
    transition: 0.3s ease;
}

.primary-btn {
    background: #0abb84;
    color: white;
        cursor: pointer;
}

.primary-btn:hover {
    background: #099a70;
}

.outline-btn {
    border: 2px solid #0abb84;
    color: #0abb84;
}

.outline-btn:hover {
    background: #0abb84;
    color: white;
}

/* ================= RIGHT IMAGE ================= */
.forest-img {
    flex: 1 1 45%;
}

.forest-img img {
    width: 100%;
    border-radius: 2rem;
    display: block;
}

/* ================= FOOTER ================= */
.footer {
   text-align: center;
    padding: 1rem 0;
    background: #000;
}

.footer-link {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width: 768px) {
    .forest-box {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .forest-text h1 {
        font-size: 2.2rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .forest-img img {
        margin-top: 2rem;
        border-radius: 1.5rem;
    }
}