body {
  font-family: 'Rajdhani', sans-serif;
}
.bg-custom-blue {
  background-color: #1D3557;
}
.text-custom-blue {
  color: #1D3557;
}
.hover\:bg-custom-light:hover {
  background-color: #A8DADC;
}

h1, h2, h3, .highlight {
  color: #1D3557;
}

/* Header fijo con borde azul y fondo blanco */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 3px solid #1D3557;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Colores personalizados */
.bg-custom-blue {
  background-color: #1D3557;
}

.text-custom-blue {
  color: #1D3557;
}

.hover\:bg-custom-light:hover {
  background-color: #A8DADC;
}

section {
  scroll-margin-top: 150px; /* Ajusta según la altura de tu header */
}

.nav-link {
  cursor: pointer;
}