.hero-banner.otros-servicios-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://i.pinimg.com/736x/e1/7f/06/e17f062e117ed0cd7f76a1a20efd0c4a.jpg");
  background-size: cover;
  background-position: center;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  margin-bottom: 0;
  position: relative;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(48, 48, 48, 0.7) 0%, rgba(252, 186, 0, 0.4) 100%);
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--text-white);
}

.hero-banner p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: var(--text-white);
  opacity: 0.9;
}

.featured-services-section {
  padding: 5rem 0;
  background-color: #fff;
}

.featured-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.featured-service.reverse {
  direction: rtl;
}

.featured-service.reverse .featured-service-content {
  direction: ltr;
}

.featured-service-content {
  padding: 2rem;
}

.featured-service-content h3 {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.featured-service-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
}

.featured-service-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--color-primary);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.service-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
}

.featured-service-image {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.featured-service-image img:hover {
  transform: scale(1.05);
}

.service-separator {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  margin: 4rem auto;
  width: 80%;
  opacity: 0.5;
}

.cta-section {
  background-color: var(--color-primary);
  color: var(--text-white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(252, 186, 0, 0.8) 0%, rgba(252, 186, 0, 0.6) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .featured-service {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .featured-service.reverse {
    direction: ltr;
  }
  .featured-service-image {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-banner.otros-servicios-banner {
    height: 400px;
  }
  .hero-banner h1 {
    font-size: 2.5rem;
  }
  .hero-banner p {
    font-size: 1.2rem;
  }
  .featured-service-content h3 {
    font-size: 1.8rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-banner.otros-servicios-banner {
    height: 350px;
  }
  .hero-banner h1 {
    font-size: 2rem;
  }
  .featured-service-content {
    padding: 1.5rem;
  }
  .featured-service-image {
    height: 250px;
  }
}