* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.landing-page {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f0f7f4 0%, #d4e4d9 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.landing-explore-page {
  width: 100%;
  max-width: 480px; 
  background-color: white;
  box-shadow: 0 8px 24px rgba(93, 162, 111, 0.2);
  border-radius: 16px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 1.5rem; 
  margin: 1rem;
  gap: 1.5rem;
  animation: slideIn 0.6s ease-out;
}

.landing-illustration-text,
.landing-illustration-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.landing-illustration-heading {
  font-size: 1.2rem; 
  font-weight: 700;
  text-align: center;
  color: #0c7d69;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 2rem;
}

.landing-illustration-img img {
  max-height: 200px; 
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.landing-illustration-img img:hover {
  transform: scale(1.05);
}

.landing-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.landing-illustration-buttons a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.landing-btn,
.landing-btn-secondary {
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.9rem 1.5rem; 
  border-radius: 8px; 
  font-size: 1rem; 
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.landing-btn {
  background-color: #5da26f;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(93, 162, 111, 0.3);
}

.landing-btn:hover {
  background-color: #4a8a5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(93, 162, 111, 0.4);
  color: white;
}

.landing-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(93, 162, 111, 0.2);
}

.landing-btn-secondary {
  background-color: transparent;
  color: #5da26f;
  border: 2px solid #5da26f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.landing-btn-secondary:hover {
  background-color: rgba(93, 162, 111, 0.1);
  color: #4a8a5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(93, 162, 111, 0.3);
}

.landing-btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .landing-explore-page {
    max-width: 90%;
    padding: 2rem;
  }

  .landing-illustration-heading {
    font-size: 1.5rem;
  }

  .landing-illustration-img img {
    max-height: 150px;
  }

  .landing-buttons-container {
    max-width: 250px;
  }

  .landing-btn,
  .landing-btn-secondary {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .landing-explore-page {
    max-width: 95%;
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .landing-illustration-heading {
    font-size: 1.3rem;
  }

  .landing-illustration-img img {
    max-height: 120px;
  }

  .landing-buttons-container {
    max-width: 200px;
  }

  .landing-btn,
  .landing-btn-secondary {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}