.contents-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 40px;
}

.content {
  z-index: 1;
  background: #4c6d36;
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  margin-top: 60px;
  text-align: center;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-image {
  max-width: clamp(60px, 8vw, 90px);
  margin-bottom: 15px;
}

.divider {
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 10px 0 16px;
}

h1 {
    margin-top: 35px;
}

.content p {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn-whatsapp,
.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  padding: clamp(10px, 2vw, 12px) clamp(16px, 4vw, 20px);
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  width: 100%;
  max-width: 280px;
  margin-bottom: 10px;
}

.btn-whatsapp {
  background-color: #4c6d36;
  color: white;
}

.btn-whatsapp:hover {
  background-color: rgba(8, 146, 63, 0.5);
}

.btn-email {
  background-color: #000000;
  color: white;
}

.btn-email:hover {
  background-color: #666565;
}

.btn-whatsapp i,
.btn-email i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .contents-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px 30px;
  }

  .content {
    border-radius: 16px 16px 16px 0;
  }

  .btn-whatsapp,
  .btn-email {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contents-container {
    grid-template-columns: 1fr;
    padding: 0 12px 30px;
  }

  .content {
    padding: 20px 12px;
  }

  .btn-whatsapp,
  .btn-email {
    padding: 10px;
  }
}