
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fbfcf8;
  color: #1f2937;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  padding: 15px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
}

.navbar a {
  color: #065f46;
  text-decoration: none;
  margin-left: 20px;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #10b981;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar a:hover::after { width: 100%; }

/* CONTAINER */
.container { padding: 40px; }

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .hero { flex-wrap: wrap;}
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  color: #065f46;
}

.hero-text p {
  color: #4b5563;
}

.hero-img {
  display: flex;
  justify-content: flex-end;
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* CARDS */
.card {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgb(235, 255, 232);
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.card2 {flex: 1 1 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgb(235, 255, 232);
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.c2 {flex: 1 1 250px;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgb(221, 252, 217);
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.card_img img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.card_img {
  flex-shrink: 0;
  width: 45%;
  min-width: 120px;
  max-width: 300px;
}

@media (max-width: 768px) {
  .card2 {
    flex-direction: column;
  }
  .card_img {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    max-width: 100%;
  }
  .card_img {
    width: 100%;
    max-width: none;
  }
}

.text_card {
  flex: 1;
  text-align: justify;
  min-width: 0;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  cursor: pointer;
}

.card2:hover {
  animation: none;
  transform: none;
}

/* BUTTON */
.btn {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  padding: 10px 16px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.dbtn {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  padding: 10px 16px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn a {
  display: flex;
  border-radius: 8px;
  color: azure;
  text-decoration: none;
  font-size: medium;
}