body {
  background-color: #eef6fa;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #2c3e50;
}

/* New container block for clean centering */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

h1 {
  color: #1e3a8a;
  margin: 30px 0 10px;
}

h2 {
  color: #1e3a8a;
  margin: 40px 0 10px;
}

.tagline {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 20px;
}

.hero {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 16px 32px;
  margin: 20px auto 10px auto;
  font-size: 1.1em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.note {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.note.centered {
  text-align: center;
}

.content {
  padding-bottom: 40px;
  text-align: left;
  font-size: 1em;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.map-link {
  display: inline-block;
  background-color: #4285F4;
  color: white;
  padding: 12px 20px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  margin: 20px auto;
}

.map-link:hover {
  background-color: #3367D6;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin: 30px auto 40px auto;
}

.mobile-note {
  display: none !important;
}

/* MOBILE RESPONSIVE SECTION */
@media (max-width: 600px) {
  body {
    font-size: 18px !important;
    padding: 0 !important;
  }

  .container {
    padding: 0 20px !important;
  }

  h1 {
    font-size: 2em !important;
    margin: 24px 0 10px !important;
  }

  h2 {
    font-size: 1.6em !important;
    margin: 32px 0 10px !important;
  }

  ul {
    font-size: 1.1em !important;
    padding-left: 18px !important;
  }

  li {
    font-size: 1.1em !important;
    margin-bottom: 10px !important;
  }

  .note {
    font-size: 1.1em !important;
    margin: 20px auto 30px auto !important;
    padding: 0 16px;
  }

  .map-link {
    font-size: 1.2em !important;
    padding: 16px 28px !important;
    margin: 20px auto !important;
  }

  .whatsapp-button {
    font-size: 1.3em !important;
    padding: 16px 28px !important;
    width: 88% !important;
    max-width: 320px !important;
  }

  .hero {
    width: 95% !important;
    max-width: none !important;
    height: auto !important;
  }

  .content {
    padding: 0 0 40px !important;
  }

  iframe {
    height: 500px !important;
    margin: 30px 0 !important;
  }
}
