* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffff;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
    color: #fff;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links .mobile-btn {
    display: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-btn {
    background: #1C7F56;
    color: white;
    height: 64px;
    width: 271px;
    flex-shrink: 0;
    padding: 0 68px 0 24px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    gap: 8px;
}

.nav-btn .arrow-icon {
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: #166c41;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .dropdown-container:hover .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}


.section-label-news {
    display: inline-flex;
    align-items: center;
    background: #E5FAEA;
    color: #1C7F56;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 16px;
    margin: 0 auto 20px auto;
    width: auto;
    height: auto;
    font-family: 'Poppins', sans-serif;
}

.section-label-news::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1C7F56;
    border-radius: 50%;
    margin-right: 10px;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
  width: 90%;
  margin: 100px auto 0;
  padding: 40px 0;
  color: #1a1a1a;
  gap: 40px;
}

.about-content {
  width: 50%;
  min-width: 300px;
  flex-grow: 1;
}

.about-content h2 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0b1215;
}

.about-content p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #444;
}

.about-btn {
  background: #1C7F56;
  color: white;
  padding: 12px 70px 12px 24px;
  height: 64px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 338px;
  max-width: 100%;
  text-align: center;
}

.about-btn .arrow-icon {
  background: white;
  color: #1C7F56;
  width: 56px;
  height: 56px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.about-btn:hover {
  background: #166c41;
}

.about-image {
  flex-grow: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  max-width: 626px;
  height: 541px;
  border-radius: 30px;
  object-fit: cover;
  filter: brightness(40%);
}

.origins-section {
background-color: #EFFAF4;
font-family: 'Poppins', sans-serif;
}

.origin-container {
display: flex;
/* Changed from align-items: center to align-items: flex-start */
align-items: flex-start;
justify-content: space-between;
max-width: 90%;
width: 90%;
margin: 150px auto;
padding: 40px 0;
color: #1a1a1a;
flex-wrap: wrap;
gap: 40px;
}

.origins-image {
flex: 1 1 45%;
min-width: 300px;
}

.origins-image img {
width: 100%;
max-width: 669px;
border-radius: 48px;
height: 738px;
object-fit: cover;
display: block;
}

.origins-content {
flex: 1 1 45%;
min-width: 300px;
padding-left: 0;
}

.origins-content h2 {
font-size: 56px;
font-weight: 700;
margin-bottom: 40px;
color: #0b1215;
}

.origins-content p {
font-size: 20px;
line-height: 1.4;
margin-bottom: 30px;
color: #444;
}

@media (max-width: 992px) {
  .about-section,
  .origin-container {
flex-direction: column;
text-align: center;
gap: 60px;
margin-top: 100px;
margin-bottom: 100px;
  }

  .about-content,
  .origins-content {
width: 100%;
padding-left: 0;
  }

  .about-content h2,
  .origins-content h2 {
font-size: 48px;
  }

  .about-image img,
  .origins-image img {
height: auto;
max-width: 100%;
  }

  .about-image img {
min-height: 400px;
  }
  
  .origins-image img {
min-height: 500px;
  }
}

@media (max-width: 576px) {
  .about-section {
margin-top: 60px;
  }

  .about-content h2,
  .origins-content h2 {
font-size: 38px;
  }

  .about-content p,
  .origins-content p {
font-size: 18px;
  }

  .about-btn {
width: 100%;
padding: 12px 60px 12px 20px;
  }

  .about-image img {
min-height: 300px;
  }
  
  .origins-image img {
min-height: 350px;
  }
}

.our-services {
  width: 90%;
  max-width: 90%;
  margin: 100px auto;
  text-align: center;
}

.service-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.services {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-card {
  background: white;
  width: 40%;
  max-width: 700px;
  min-width: 320px;
  height: auto;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 1; 
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 15px;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.service-card p {
  font-size: 16px;
  color: #555;
  margin: 12px 0 22px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1300px;
  margin: 50px auto;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 283px; 
  max-width: 25%;
  min-width: 180px; 
  height: auto;
  min-height: 133px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.stat-card span {
  font-size: 48px;
  font-weight: bold;
  color: black;
}

.stat-card p {
  font-size: 16px;
  color: black;
  margin-top: 10px;
}


@media (max-width: 1200px) {
  .service-title {
font-size: 48px;
  }
}

@media (max-width: 992px) {
  .service-card {
width: 60%; 
min-width: 400px; 
margin: 0 auto;
  }

  .service-card img {
height: 300px;
  }

  .service-card h3 {
font-size: 32px;
  }
  
  .stat-card {
min-width: 200px;
max-width: 45%;
  }
}

@media (max-width: 768px) {
  .service-card {
width: 100%;
min-width: unset;
  }
  .stat-card {
max-width: 48%;
min-width: unset;
  }
}

@media (max-width: 576px) {
  .our-services {
margin: 60px auto;
  }

  .service-title {
font-size: 38px;
  }

  .service-card {
padding: 20px;
  }

  .service-card h3 {
font-size: 28px;
  }
  
  .service-card img {
height: 200px;
  }

  .stat-card {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
  }
}

.team-section {
    padding: 60px 0;
    background: #f0fff7;
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 90px auto;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.team-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 90%;
    max-width: 90%;
    margin: 0 auto 40px auto;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.team-label {
    font-size: 16px;
    font-weight: 500;
    background: #e6fff1;
    padding: 5px 15px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    height: 43px;
    position: relative;
    top: 0;
    z-index: 2;
    color: #166647;
    margin: 0 0 10px 0;
    left: 0;
    font-family: 'Poppins', sans-serif;
}

.team-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1C7F56;
    border-radius: 50%;
    margin-right: 10px;
}

.team-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.team-title {
    font-size: 56px;
    font-weight: 700;
    color: #0d0d0d;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.team-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    width: 100%;
    height: auto;
    padding-bottom: 133%;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.team-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 10;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.team-card:hover .team-info {
    opacity: 0;
}

.team-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.team-info p {
    font-size: 16px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.team-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1C7F56;
    border-radius: 24px;
    z-index: 15;
    padding: 30px;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: left;
    overflow-y: auto; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    font-family: 'Poppins', sans-serif;
}

.team-hover-overlay::-webkit-scrollbar {
    display: none; 
}

.team-card:hover .team-hover-overlay {
    opacity: 1;
}

.overlay-label {
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: fit-content;
    margin-bottom: 20px;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.overlay-label::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    margin-right: 4px;
}

.overlay-name {
    margin: 0 0 4px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.overlay-position {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.overlay-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0 20px 0;
    flex-shrink: 0;
}

.overlay-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    margin: 0 0 20px 0;
    overflow-y: visible;
    font-family: 'Poppins', sans-serif;
}

.overlay-divider-bottom {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0 15px 0;
    flex-shrink: 0;
}

.overlay-contact {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.overlay-contact a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.overlay-contact .email-icon {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .team-title {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-title-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .team-title {
        font-size: 38px;
        text-align: center;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-card {
        padding-bottom: 145%;
    }

    .team-hover-overlay {
        padding: 20px;
    }

    .overlay-name {
        font-size: 22px;
    }

    .overlay-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .overlay-label {
        margin-bottom: 15px;
    }
    
    .overlay-position {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .team-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }
}

.news-section {
  width: 100%;
  background: #EFFAF4;
  padding: 60px 0;
}

.news-container {
  width: 90%;
  max-width: 1300px;
  margin: 20px auto;
}

.news-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title-news {
  text-align: left;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
  line-height: 1.2;
}

.news-nav-btn {
  background: #1C7F56;
  color: white;
  height: 64px;
  width: 168px;
  flex-shrink: 0;
  padding: 0 60px 0 15px;
  border-radius: 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  gap: 8px;
}

.news-nav-btn .arrow-icon {
  background: white;
  color: #1C7F56;
  width: 56px;
  height: 56px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.news-nav-btn:hover {
  background: #166c41;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.news-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  height: auto;
  min-height: 518px;
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
}

.news-content {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #777;
  width: auto;
  height: auto;
  flex-wrap: wrap;
}

.tag {
  background: #1C7F56;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: bold;
}

.date {
  padding: 4px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  white-space: nowrap;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.4;
  flex-shrink: 0;
}

.news-desc {
  font-size: 16px;
  color: #030110;
  line-height: 1.4;
  margin-bottom: 15px;
  opacity: 0.7;
  flex-grow: 1;
}

.read-more {
  font-weight: 500;
  text-decoration: none;
  color: #1C7F56;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  margin-top: auto;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .section-title-news {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title-news {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .news-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-nav-btn {
    margin-top: 15px;
  }

  .news-card {
    min-height: 400px;
  }

  .news-title {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .news-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-card {
    min-height: auto;
  }

  .news-nav-btn {
    width: 100%;
    justify-content: center;
  }

  .section-title-news {
    font-size: 32px;
  }
}

.contact-section {
  width: 90%;
  max-width: 90%;
  margin: auto;
  padding: 80px 0;
}

.contact-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  color: #1C7F56;
  font-size: 32px;
  margin-bottom: 20px;
}

.info-block p {
  font-size: 24px;
  margin-bottom: 80px;
  line-height: 120%;
  opacity: 0.6;
}

.social-icons a {
  background: #1C7F56;
  color: white;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  text-decoration: none;
  font-size: 32px;
  flex-shrink: 0;
}

.contact-form {
  background: #F2F2F2;
  padding: 30px;
  border-radius: 40px;
  width: 673px;
  max-width: 100%;
  height: auto;
  min-height: 700px;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 40px;
}

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  height: 56px;
  padding: 12px;
  border-radius: 16px;
  border: none;
  outline: none;
}

textarea {
  height: 120px;
  resize: none;
}

.contact-btn {
  background: #1C7F56;
  color: white;
  border: none;
  height: 64px;
  padding: 0 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
}

.arrow-contact {
  background: white;
  color: #1C7F56;
  width: 56px;
  height: 56px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  right: 3px;
}

.contact-btn:hover {
  background: #166c41;
}

.closing-section {
  width: 90%;
  max-width: 90%;
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-box {
  font-family: 'Poppins', sans-serif; 
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 48px;
  margin-bottom: 60px;
  height: auto;
  min-height: 459px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
linear-gradient(40deg, 
  rgba(0, 0, 0, 0) 0%,   
  rgba(20, 102, 82, 0.58) 50%,  
  #297B68 100%),   
url('/graphics/ctaCover.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
0 8px 32px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.5),
inset 0 -1px 0 rgba(255, 255, 255, 0.1),
inset 0 0 0px 0px rgba(255, 255, 255, 0);
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  width: auto; 
  min-width: 200px; 
  height: 64px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; 
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 198px;
  height: 96px;
  display: block;
  margin-bottom: 6px;
}

.logo-placeholder {
  width: 80px;
  height: 50px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 6px;
}

.footer-small {
  font-size: 12px;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 20px;
  text-align: right;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .contact-wrapper {
gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-title {
font-size: 48px;
  }

  .contact-wrapper {
flex-direction: column;
gap: 40px;
  }

  .contact-form {
min-height: auto;
  }

  .info-block h3 {
font-size: 28px;
  }

  .info-block p {
font-size: 20px;
margin-bottom: 40px;
  }

  .cta-box h2 {
font-size: 38px;
  }

  .cta-box p {
font-size: 20px;
  }

  .cta-buttons {
  flex-direction: column;
  gap: 15px;
  align-items: center;
  font-family: poppins;
}

.cta-btn {
  width: 100%;
  max-width: 300px;
  font-family: poppins;
}

  .footer-row {
flex-direction: column;
align-items: center;
text-align: center;
padding: 0;
  }

  .footer-tagline {
font-size: 18px;
margin-right: 0;
margin-bottom: 15px;
text-align: center;
  }

  .footer-logo {
align-items: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
font-size: 38px;
margin-bottom: 20px;
  }

  .contact-section {
padding: 40px 0;
  }
  
  .contact-form {
padding: 20px;
  }

  .form-group {
margin-bottom: 30px;
  }

  .cta-box h2 {
font-size: 32px;
  }

  .cta-box {
padding: 40px 20px;
margin-bottom: 40px;
min-height: 350px;
  }
}

.footer-section {
  width: 100%;
  background: white;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-divider {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  flex-grow: 1;
  min-width: 150px;
  max-width: 250px;
}

.footer-column:last-child {
  flex-grow: 2;
  min-width: 250px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  font-size: 20px;
  opacity: 0.4;
  text-decoration: none;
  color: inherit;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-item span {
  margin-right: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C7F56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 1;
}

.map-container {
  width: 100%; 
  height: 224px;
  overflow: hidden;
}

.footer-bottom {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  padding-top: 16px;
}

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

.footer-column,
.footer-column:last-child {
max-width: 100%;
min-width: 100%;
text-align: center;
}

.footer-column ul {
width: fit-content;
margin: 0 auto;
}

.footer-column h4 {
margin-bottom: 15px;
}

.footer-column ul li a {
font-size: 18px;
}

.social-links {
  justify-content: center;
}
}

@media (max-width: 576px) {
.footer-section {
padding: 40px 0;
}

.footer-divider.bottom-line {
margin-top: 40px;
}

.social-links {
  justify-content: center;
}
}