  body {
    font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
    background-color: #f5f3ee;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  

  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f3ee;
    padding: 4rem 8rem; 
  }
  
  .hero-text {
    flex: 1 1 400px;
    padding: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: #8d9f87;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons button {
    background-color: #8d9f87;
    color: #fff;
    border: none;
    margin-top: 0.5rem;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .hero-buttons button:hover {
    background-color: #a99985;
  }

  .hero-buttons button:active {
    transform: translateY(1px); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .hero-buttons .secondary {
    background-color: transparent;
    border: 2px solid #a99985;
    color: #a99985;
  }
  
  .hero-buttons .secondary:hover {
    background-color: #a99985;
    color: #fff;
  }

  .hero-buttons .secondary:active {
    transform: translateY(1px); 
    background-color: #7D6D63; 
    color: #fff; 
  }

  .hero-buttons {
    position: relative; 
    z-index: 10; 
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem; 
  }
  
  .hero-img {
    flex: 1 1 350px; 
    padding: 1rem;
  }
  
  .hero-img img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  
  @media (max-width: 1200px) {
    .hero {
      padding: 3rem 6rem;
    }
    .hero-text h1 {
      font-size: 2.2rem;
    }
    .hero-text p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero {
      padding: 2rem 4rem;
    }
    .hero-text {
      flex: 1 1 100%;
    }
    .hero-img {
      flex: 1 1 100%; 
    }
    .hero-text h1 {
      font-size: 2rem;
    }
    .hero-text p {
      font-size: 0.95rem;
    }
    .hero-buttons {
      justify-content: center; 
      gap: 1rem; 
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column-reverse;
      text-align: center;
      padding: 1.5rem 2rem;
    }
    .hero-text {
      text-align: center;
      padding: 0.5rem 0;
    }
    .hero-text h1 {
      font-size: 1.8rem;
    }
    .hero-text p {
      font-size: 0.9rem;
    }
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 0.25rem; 
      margin-top: 1rem;
    }
    .hero-buttons button,
    .hero-buttons .secondary {
      width: 90%; 
      max-width: 300px;
      margin-right: 0;
      white-space: nowrap;
    }
    .hero-img {
      margin-top: 1rem;
      padding: 0.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      padding: 1rem;
    }
    .hero-text h1 {
      font-size: 1.5rem;
    }
    .hero-text p {
      font-size: 0.85rem;
    }
    .hero-buttons button,
    .hero-buttons .secondary {
      width: 100%;
      max-width: 280px;
    }
  }

  .how-it-works {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
  }
  
  .how-it-works h2 {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  
  .how-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .card {
    background-color: #f8f7f4;
    border-radius: 14px;
    width: 260px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .card p {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #a99985;
    font-weight: 600;
  }
  
  .newsletter {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #d6cfc4;
  }
  
  .newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
  }
  
  .newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
  }
  
  #contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  #contact-form input,
  #contact-form button {
    padding: 0.1rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #a99985;
  }
  
  #contact-form input {
    width: 250px;
    height: 48px;
    background-color: #fff;
  }
  
  #contact-form input:focus {
    outline: none;
    border-color: #8d9f87;
  }
  
  #contact-form button {
    background-color: #8d9f87;
    color: #fff;
    border: none;
    height: 48px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  #contact-form button:hover {
    background-color: #a99985;
    transform: translateY(-2px);
  }
  
  .modal-backdrop {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
  }
  
  .modal-backdrop.active {
    display: flex;
  }
  
  .modal-box {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    width: 320px;
  }
  
  .modal-box p {
    margin-top: 1rem;
    color: #4a4a4a;
  }
  
  .modal-box button {
    margin-top: 1.5rem;
    background-color: #8d9f87;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .modal-box button:hover {
    background-color: #a99985;
  }

  .modal-box button:active {
    transform: scale(0.98); 
  }

  .modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .modal-icon.success::before {
    content: '✔';
    color: #48b26b;
  }
  
  .modal-icon.error::before {
    content: '⚠';
    color: #d44b4b;
  }
  
 
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
  }
  
  .shake {
    animation: shake 0.3s;
    border-color: #d44b4b !important;
  }
  
  
  @media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .hero-buttons button,
  .hero-buttons .secondary {
    width: 80%;
    max-width: 320px;
    margin-right: 0;
  }

  .hero-img {
    margin-top: 1rem;
  }
}
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-8px); }
    30%, 60%, 90% { transform: translateX(8px); }
  }
  
  .shake {
    animation: shake 0.4s ease;
    border: 2px solid #d44b4b !important;
    box-shadow: 0 0 8px rgba(212, 75, 75, 0.5);
  }

  button.clicked {
    transform: scale(0.97);
    transition: transform 0.15s ease;
  }
  
.main-footer {
  background-color: #f5f3ee;
  color: #4a4a4a;
  padding: 2rem 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0e0;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-left p {
  margin: 0;
  font-weight: bold;
  color: #4a4a4a;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #8d9f87;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #a99985; 
}

.footer-left a,
.footer-right a {
  color: #8d9f87;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right span {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .main-footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .footer-left,
  .footer-right {
    margin-bottom: 1rem;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }

  .footer-right a {
    margin-right: 0;
  }
}
 
.environmental-impact {
  background-color: #5d4a3b;
  color: #f5f3ee;
  padding: 4rem 2rem;
  text-align: center;
}

.environmental-impact p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.environmental-impact strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .environmental-impact {
    padding: 3rem 1rem;
  }

  .environmental-impact p,
  .environmental-impact ul li {
    font-size: 1rem;
  }

  .environmental-impact ul {
    margin: 1.5rem auto;
  }
}

.alley-plant-image-container {
  margin: auto;
  padding: 4rem 2rem;
  background-color: #f5f3ee;
}

.alley-plant-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .alley-plant-image-container {
    padding: 2rem 1rem;
  }
}
  
.bloome-packaging {
  background-color: #5d4a3b;;
  color: #fff;
  padding: 4rem 5rem;
  display: flex;
  justify-content: space-between;
  text-align: start;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  position: flex;
  overflow: hidden; 
}

.bloome-packaging::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bokeh-overlay.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.bloome-packaging > * {
  position: relative;
  z-index: 2;
}

.motto-left {
  flex: 1 1 50%;
  vertical-align: top;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5rem;
}

.motto-right {
  flex: 1 1 40%;
  text-align: left;
  vertical-align: bottom;
  margin-top: 5rem;
}

.motto-right p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .bloome-packaging {
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
  }

  .motto-left,
  .motto-right {
    flex: 1 1 100%; 
    text-align: center;
  }

  .motto-left {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .bloome-packaging {
    padding: 3rem 1.5rem;
  }

  .motto-left {
    font-size: 1.5rem;
  }

  .motto-right p {
    font-size: 1rem;
  }
}


.bloome-ingredients {
  background-image: url('img/gift-box-ribbon.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 4rem auto;
  max-width: 1200px;
  width: calc(100% - 8rem); 
  padding: 4rem 5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 12px; 
}

.ingredients-text-content {
  flex: 0 1 50%;
  max-width: 500px;
  padding-right: 0; 
  padding-left: 2rem;
  text-align: center; 
}

.bloome-ingredients h4 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.bloome-ingredients ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.bloome-ingredients ul li {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

li::before {
  content: "-";
  margin-right: 0.5rem;
}

.bloome-ingredients p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.bloome-ingredients h5 {
  font-size: 1.4rem;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .bloome-ingredients {
    width: calc(100% - 4rem);
    padding: 3.5rem 4rem;
  }
  .ingredients-text-content {
    padding-left: 1.5rem;
  }
}

@media (max-width: 992px) {
  .bloome-ingredients {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem auto;
    min-height: 450px;
    width: calc(100% - 2rem);
  }
  .ingredients-text-content {
    flex: 0 1 100%;
    padding-left: 0;
    padding-top: 2rem;
    max-width: 90%;
  }
  .bloome-ingredients h4 {
    font-size: 1.3rem;
  }
  .bloome-ingredients ul li,
  .bloome-ingredients p {
    font-size: 0.95rem;
  }
  .bloome-ingredients h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .bloome-ingredients {
    padding: 2.5rem 1.5rem;
    margin: 1rem auto;
    min-height: 400px;
  }
  .bloome-ingredients h4 {
    font-size: 1.2rem;
  }
  .bloome-ingredients ul li,
  .bloome-ingredients p {
    font-size: 0.9rem;
  }
  .bloome-ingredients h5 {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .bloome-ingredients {
    padding: 2rem 1rem;
    min-height: 350px;
  }
  .bloome-ingredients h4 {
    font-size: 1.1rem;
  }
  .bloome-ingredients ul li,
  .bloome-ingredients p {
    font-size: 0.85rem;
  }
  .bloome-ingredients h5 {
    font-size: 1rem;
  }
}

.bloome-change {
  background-image: url('img/choc-almonds-flowers.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 4rem auto;
  max-width: 1200px;
  width: calc(100% - 8rem);
  padding: 4rem 5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.bloome-change h4 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-right: 40rem;
}

.bloome-change p {
  border: #333;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 8rem auto 0.5rem 35rem;
  max-width: 80%;
}

@media (max-width: 1330px) {
  .bloome-change {
    width: calc(100% - 4rem);
    padding: 3.5rem 4rem;
  }
  .change-text-content {
    padding-left: 1.5rem;
    margin-right: 0rem;
  }
  .bloome-change h4 {
    margin-right: 420px;
  }
  .bloome-change p {
    margin-left: 400px;
  }
  
}

@media (max-width: 992px) {
  .bloome-change {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem auto;
    min-height: 450px;
    width: calc(100% - 2rem);
  }
  .change-text-content {
    /*flex: 0 1 100%;*/
    padding-left: 0;
    padding-top: 2rem;
    max-width: 90%;
  }
  .bloome-change h4 {
    font-size: 1.3rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
  }
  .bloome-change p {
    font-size: 1.1rem;
    margin: 0 auto 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .bloome-change {
    padding: 2.5rem 1.5rem;
    margin: 1rem auto;
    min-height: 400px;
  }
  .bloome-change h4 {
    font-size: 1.2rem;
    margin: 0.1rem auto 2rem auto;
  }
  .bloome-change p {
    font-size: 0.95rem;
    margin: 0.5rem auto 2rem auto;
  }
}

@media (max-width: 576px) {
  .bloome-change {
    padding: 2rem 1rem;
    min-height: 350px;
  }
  .bloome-change h4 {
    font-size: 1.1rem;
    margin: 0.1rem auto 2rem auto;
  }
  .bloome-change p {
    font-size: 0.85rem;
    margin: 0.1rem auto 0.5rem auto;
  }
}