html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: white;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #1b4332;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #2d6a4f;
}

/* ABOUT */
.about {
  padding: 100px 8%;
  background: linear-gradient(to right, #f8f9fa, #eef5f3);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.label {
  background: #d8f3dc;
  color: #1b4332;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1b4332;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 18px;
  color: #444;
  font-size: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #2d6a4f;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1b4332;
  transform: translateY(-3px);
}

/* IMAGES */
.about-images {
  flex: 1 1 400px;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.about-images img:hover {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    margin-top: 40px;
  }

  .navbar ul {
    gap: 15px;
  }
}
