body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

header {
  background-color: #004b70;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

header img {
  max-width: 150px;
  margin: 10px;
}

h1,
h2 {
  margin: 20px 0;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

section {
  padding: 40px;
  margin: 20px auto;
  max-width: 800px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

p {
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 10px 0;
  background-color: #004b70;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  width: 100%;
}

a {
  color: #004b70;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mejora de visibilidad para los logos */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.logo-container a {
  display: inline-block;
  text-decoration: none;
}

.logo {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container a:hover .logo {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.innotech-logo {
  max-width: 170px;
}

/* Scroll Animations */
.support-header,
.support-section,
.support-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in.animate {
  opacity: 1;
  transform: translateX(0);
}

.support-section {
  transform: translateX(-50px);
}

@media (max-width: 600px) {
  header img {
    max-width: 100px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .support-section {
    transform: translateY(30px);
  }
}
