/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
}

header {
  background-color: #28a745;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-highlight {
  color: #f9ca4b;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #333333;
  font-size: 28px;
  margin-top: 0;
}

p {
  color: #666666;
  font-size: 18px;
  line-height: 1.5;
}

footer {
  background-color: #333333;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 14px;
}

/* Estilos específicos para la página de inicio */
#inicio {
  text-align: center;
  margin-bottom: 40px;
}

.hero {
  margin-top: 100px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}

/* Estilos específicos para la página de servicios */
#servicios {
  text-align: center;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service {
  width: 300px;
  margin: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}

/* Estilos específicos para la página de contacto */
#contacto {
  text-align: center;
  margin-bottom: 40px;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #cccccc;
}

button[type="submit"] {
  background-color: #28a745;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #218838;
}
