body {
  font-family: "Inter", sans-serif;
}

/* Estilos personalizados */
.heading_main h2 {
  color: #0d668a;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Línea decorativa bajo el título */
.heading_main::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #4caf50 0%,
    #4caf50 25%,
    #042149 25%,
    #042149 100%
  );
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.section {
  padding: 80px 0;
}

.margin-top_50 {
  margin-top: 50px;
}

.layout_padding_2 {
  padding: 2rem;
}

.text_align_left {
  text-align: left;
}

.full p {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.button-theme {
  background-color: #0d668a;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
}

.hvr-radial-out:hover {
  background-color: #4caf50;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.full img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .section {
    padding: 60px 0;
  }
  .heading_main h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .heading_main h2 {
    font-size: 2rem;
  }
  .layout_padding_2 {
    padding: 1rem;
  }
}
