    :root {
      --bg-color: #ffffff;
      --accent-color: #1c2b1c;
      --button-color: #00695c;
      --text-color: #1c2b1c;
      --font-primary: 'Inter', sans-serif;
      --font-secondary: 'Playfair Display', serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: var(--bg-color);
      font-family: var(--font-primary);
      color: var(--text-color);
    }

    header, footer {
        background-color: #00695c;
        color: white;
        padding: 1rem;
        text-align: center;
    }
    
    nav a {
        margin-left: 1.5rem;
        text-decoration: none;
        color: white;
        font-weight: 500;
    }
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .hero-text {
      max-width: 50%;
    }

    .hero-text h1 {
      font-family: var(--font-secondary);
      font-size: 2.5rem;
      color: #014d44;
    }

    .hero-text p {
      margin-top: 1rem;
      font-size: 1rem;
      color: #014d44;
    }

    .hero-buttons {
      margin-top: 1.5rem;
    }

    .hero-buttons button {
      background-color: var(--button-color);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      margin-right: 1rem;
      border-radius: 0.5rem;
      cursor: pointer;
    }

    .hero img {
      max-width: 45%;
      border-radius: 1rem;
    }

    .stats {
      background-color: #00695c;
      color: white;
      padding: 2rem;
      display: flex;
      justify-content: space-around;
    }

    .stats div {
      text-align: center;
    }

    .services {
      padding: 3rem 2rem;
      text-align: center;
    }

    .services h2 {
      font-family: var(--font-secondary);
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .service-items {
      display: flex;
      justify-content: space-around;
      margin-top: 2rem;
    }

    .service-item {
      max-width: 30%;
    }

    .service-item h3 {
      margin-top: 1rem;
      font-size: 1.2rem;
    }

    .team {
      padding: 3rem 2rem;
      text-align: center;
    }

    .team h2 {
      font-family: var(--font-secondary);
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .team-members {
      display: flex;
      justify-content: space-around;
    }

    .team-member img {
      width: 100%;
      border-radius: 1rem;
    }

    .team-member {
      max-width: 30%;
    }

    @media (max-width: 768px) {
      .hero {
      flex-direction: column; 
      gap: 10px;
      width: 100%;
      }
      .hero-text {
        max-width: 100%;
        text-align: left;
      }
    }