   .buttons{
  color: inherit;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 20px;
  display: inline-block;
  font-family: sans-serif;
  transition: all 0.1s;

}
.home-page .navbar {
  background: #79addc;
}
/* 🌿 NAVIGATION BAR STYLES */
.navbar {
  width: 100%;
  background: var(--accent-color, #79addc);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
/*  stops items from going off screen */
.nav-list {
  display: flex;
  flex-wrap: wrap;          
  gap: 1rem;                
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

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

.nav-links a.active {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}
.page-header {
  width: 100%;
  background: var(--accent-color, #79addc);
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.page-header .navbar {
  background: none; /* remove duplicate color */
  box-shadow: none;
  padding: 0;
}
body {
  font-family: 'times new roman', serif;
  background: #fff;
  min-height: 100vh;
  color: #111;
}

    /* Left side */
    .left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .tilted-box {
      background: #b5f5c5;
      padding: 4rem 3.5rem;
      transform: rotate(-15deg);
      font-size: 5rem;
      text-align: center;
      font-weight: bold;
      border-radius: 0.5rem;
      width: 400px;
      box-shadow: 10px 10px 20px rgba(0,0,0,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 155px;
      margin-left: 200px
    }

    .tilted-box span {
        transform: rotate(15deg);
        display: inline-block;
    }

    .blob {
      background: #b5f5c5;
      border-radius: 70% 40% 60% 50% / 50% 70% 40% 50%;
      padding: 2.5rem;
      margin-top: 100px;
      margin-left: 230px;
      max-width: 380px;
      text-align: center;
      font-weight: bold;
      line-height: 1.6;
      font-size: 2rem;
      box-shadow: 10px 10px 20px rgba(0,0,0,0.25);
    }

    /* Right side */
    .right {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .list {
      display: flex;
      margin-top: 100px;
      flex-direction: column;
      width: 700px;
      border-radius: 0.3rem;
      overflow: hidden;
      box-shadow: 10px 10px 20px rgba(0,0,0,0.25);
    }

    .list button {
      border: none;
      padding: 1.5rem;
      font-size: 1.5rem;
      cursor: pointer;
      text-align: center;
      transition: 0.2s;
    }

    .list button:nth-child(1) { background: #ffee93; }
    .list button:nth-child(2) { background: #fff0a0; }
    .list button:nth-child(3) { background: #fff2ad; }
    .list button:nth-child(4) { background: #fff4ba; }
    .list button:nth-child(5) { background: #fff6c6; }
    .list button:nth-child(6) { background: #fff6c6; }
    .list button:nth-child(7) { background: #fff4ba; }
    .list button:nth-child(8) { background: #fff2ad; }
    .list button:nth-child(9) { background: #fff0a0; }
    .list button:nth-child(10) { background: #ffee93; }

    .list button:hover {
      background: #ffe066;
    }

    /* Modal (contact form) */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: #fff;
      padding: 2rem;
      border-radius: 1rem;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      position: relative;
      font-family: Arial, sans-serif;
    }

    .modal-content h2 {
      margin-top: 0;
    }

    .modal-content label {
      display: block;
      margin: 0.5rem 0 0.2rem;
    }

    .modal-content input, 
    .modal-content textarea {
      width: 100%;
      padding: 0.6rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 0.4rem;
    }

    .modal-content button {
      background: #b5f5c5;
      border: none;
      padding: 0.8rem 1.2rem;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 0.5rem;
      transition: 0.2s;
    }

    .modal-content button:hover {
      background: #88e2a2;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #333;
    }
.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}