body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f3f3f3;
  color: #333;
}
header {
  width: 100%;
  background: #0073e6;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.container {
  max-width: 900px;
  padding: 20px;
  text-align: center;
}
.poster {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.title {
  font-size: 2.5em;
  margin: 10px 0;
  color: #0073e6;
}
.subtitle {
  font-size: 1.5em;
  color: #555;
  margin-bottom: 20px;
}
.about-guides {
  font-size: 1.2em;
  margin: 20px 0;
  line-height: 1.6;
  color: #444;
}
.guide-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}
.guide {
  width: 45%;
  text-align: left;
  background-color: #eef3ff;
  padding: 20px;
  border-radius: 8px;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.guide h3 {
  color: #0073e6;
  font-size: 1.4em;
}
.guide p {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}
.contact-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 30px;
  font-size: 1.2em;
  color: #fff;
  background-color: #0073e6;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #005bb5;
}
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 1.2em;
  color: #fff;
  background-color: #25d366;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #1da851;
}
.whatsapp-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
