main {
  padding: 20px;
}

.delivery-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.delivery-container h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0C6F50;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.delivery-section {
  margin: 40px 0;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.delivery-section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.delivery-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0C6F50;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.delivery-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.delivery-section ul {
  list-style: none;
  padding: 0;
}

.delivery-section ul li {
  font-size: 18px;
  line-height: 2;
  color: #555;
  padding-left: 25px;
  position: relative;
  margin: 8px 0;
}

.delivery-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0C6F50;
  font-weight: bold;
  font-size: 24px;
}

.delivery-section ul li strong {
  color: #0C6F50;
  font-weight: 600;
}

.delivery-section.green-bg {
  background-color: #0C6F50;
  color: #fff;
}

.delivery-section.green-bg h2 {
  color: #fff;
}

.delivery-section.green-bg p {
  color: #fff;
}

.delivery-section.green-bg ul li {
  color: #fff;
}

.delivery-section.green-bg ul li::before {
  color: #fff;
}

.delivery-section.green-bg ul li strong {
  color: #fff;
}

.whatsapp-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-button:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  main {
    padding: 10px;
  }

  .delivery-container {
    padding: 0 15px;
    margin: 20px auto;
  }

  .delivery-container h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .delivery-section {
    padding: 25px 20px;
    margin: 30px 0;
  }

  .delivery-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .delivery-section p {
    font-size: 16px;
  }

  .delivery-section ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .delivery-container h1 {
    font-size: 28px;
  }

  .delivery-section {
    padding: 20px 15px;
    margin: 25px 0;
  }

  .delivery-section h2 {
    font-size: 22px;
  }

  .delivery-section p {
    font-size: 15px;
  }

  .delivery-section ul li {
    font-size: 15px;
    padding-left: 20px;
  }

  .whatsapp-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

