.oferta-section {
  padding: 0;
}

.oferta-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.oferta-container h1,
.oferta-container h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-content h2.section-title {
  color: var(--primary-color);

}

.oferta-container > p {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.oferta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.oferta-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.oferta-item:hover {
  transform: translateY(-5px);
}

.oferta-item h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.oferta-item ul {
  list-style: none;
  padding: 0;
}

.oferta-item ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.oferta-item ol li a {
  color: var(--primary-color);
}

.oferta-item ol {
  padding-left: 15px;
}

.oferta-item ol li {
  margin-bottom: 15px;
}

.oferta-item ul li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 20px;
  left: 0;
  position: absolute;
  top: -5px;
}

.oferta-item p {
  margin-bottom: 20px;
}

/* Animation classes */
.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .oferta-content {
    grid-template-columns: 1fr;
  }

  .oferta-item {
    padding: 20px;
  }
}

/* Footer styles */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 60px 0;
}

.footer-content {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content p {
  color: white;
  margin-bottom: 20px;
}
