:root {
      --dark-green: #064e3b;
      --light-green: #d1fae5;
      --white: #ffffff;
      --text-dark: #1a1a1a;


header {
  color: var(--white);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;

}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

header p {
  font-size: 1.2rem;
  max-width: 600px;
    color: white;

}

.section {
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--light-green);
}

.section:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #f0fdf4;
}

.text-box {
  flex: 1;
  min-width: 300px;
}

.text-box h2 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.text-box p, .text-box ul {
  font-size: 1.1rem;
  line-height: 1.8;
}

.text-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.text-box ul li {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.image-box {
  flex: 1;
  text-align: center;
}

.image-box img {
  max-width: 60%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .section {
    flex-direction: column !important;
  }
  header h1 {
    font-size: 2rem;
  }
}





    :root {
      --main-color: #000000;
      --card-bg: #1bab0521;
      --text-color: #333;
      --card-radius: 16px;
      --card-shadow: rgba(0, 0, 0, 0.1);
      --transition: 0.3s ease-in-out;
    }


    h1 {
      text-align: center;
      margin-bottom: 2rem;
      color: var(--main-color);
    }

    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 1.5rem;
      box-shadow: 0 4px 12px var(--card-shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .card-icon {
      font-size: 2.5rem;
      color: var(--main-color);
      margin-bottom: 1rem;
      transition: transform var(--transition);
    }

    .card:hover .card-icon {
      transform: rotate(8deg) scale(1.1);
    }

    .card-title {
      font-weight: bold;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      color: var(--text-color);
    }

    .card-desc {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
    }