/* Estilos generales */
body {
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
}

/* Contenedor del título */
.contenedor-titulo {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  z-index: var(--z-content);
}

.imagen-fondo {
  background-image: url("/static/images/visualiq_bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  background-size: cover;
}

.contenedor-titulo h1 {
  font-family: var(--font-family-display);
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  position: relative;
  font-weight: var(--font-weight-bold);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.contenedor-titulo h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.contenedor-titulo p {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  color: var(--text-dark);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

/* =============== LAYOUT SPECIFIC STYLES =============== */

/* Contenedor de imagen y párrafo - LEFT ALIGNMENT */
.contenedor-imagen-parrafo-left {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  /*text-align: justify;*/
  text-align: center;
}

/* Contenedor de imagen y párrafo - CENTER ALIGNMENT */
.contenedor-imagen-parrafo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: justify;
}

/* Columna individual */
.columna-imagen-parrafo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  min-width: 250px;
}

/* Imagen común */
.columna-imagen-parrafo img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  object-fit: contain;
}

.columna-imagen-parrafo.imagen-abajo {
  flex-direction: column-reverse;
}

/* Estilos para las imágenes */
.imagen-izquierda,
.imagen-derecha {
  width: 200px;
  height: auto;
  margin: 0 20px;
}

/* Estilos para los contenedores de texto */
.texto-contenedor {
  flex: 1;
  margin: 0 20px;
}

/* Estilos para los títulos */
.titulo {
  font-family: var(--font-family-primary);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

/* Estilos para los párrafos */
.parrafo {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 0 auto;
  max-width: 1170px;
  line-height: 1.6;
}

.imagen-centro {
  width: 200px;
  height: auto;
  margin-left: 100px;
  margin-right: 100px;
}

.titulo {
  font-family: var(--font-family-primary);
  font-size: 24px; /* Tamaño del título */
  color: #6fa388; /* Color del texto */
  margin-bottom: 10px; /* Espacio entre el título y el párrafo */
}

.parrafo {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0 auto;
  max-width: 1170px;
  line-height: 1.6;
}

.contenedor-titulo h1 {
  font-family: var(--font-family-display);
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contenedor-titulo h1 span {
  display: block; /* Hace que texto esté en una nueva línea */
  font-size: 48px; /* Tamaño más grande para texto */
  font-weight: bold; /* Texto en negrita */
  color: #6fa388;
  text-align: center;
}

.contenedor-titulo-izquierda {
  text-align: left;
  margin-top: 50px; /* Ajusta el margen superior según sea necesario */
  margin-left: 200px; /* Ajusta el margen izquierdo según sea necesario */
  max-width: 1200px; /* Ajusta el ancho máximo según sea necesario */
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.contenedor-titulo-izquierda h2 {
  font-family: var(--font-family-display);
  font-size: 32px; /* Tamaño más pequeño que el título principal */
  color: #2c3e50; /* Color del texto */
  margin-bottom: 10px; /* Espacio entre el título y el contenido siguiente */
  font-weight: bold; /* Texto en negrita */
}

.resaltado {
  color: #6fa388; /* Color verde */
  font-size: 22px; /* Tamaño ligeramente más grande que el párrafo */
  font-weight: bold; /* Texto en negrita (opcional) */
}

/* =============== RESPONSIVE STYLES =============== */

@media (max-width: 768px) {
  .contenedor-imagen-parrafo {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .contenedor-imagen-parrafo-left {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .columna-imagen-parrafo {
    width: 100%;
    min-width: auto;
  }

  .imagen-izquierda {
    flex: none;
  }

  .contenedor-titulo h1 {
    font-size: 32px;
  }

  .contenedor-titulo h1 span {
    font-size: 28px;
  }

  .contenedor-titulo p {
    font-size: var(--font-size-base);
  }

  .contenedor-titulo-izquierda {
    margin-left: 20px;
    margin-right: 20px;
  }
}



/* Footer verde */
/* .foot rule removed - using .footer-fixed from common.css instead */

/* ============================== ESTILO FOOTER DINÁMICO ============================== */

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
  color: var(--text-light);
  font-family: var(--font-family-primary);
  box-shadow: var(--shadow-footer);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-width: 100%;
}

.footer-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--border-width-thin);
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 0 var(--spacing-lg) 30px;
  box-sizing: border-box;
  transition: transform var(--transition-normal);
  width: 100%;
}

/* First column (Visual IQ description) gets more space but not double */
.footer-column:first-child {
  flex: 2;
  min-width: 500px;
}

/* Other columns get standard space */
.footer-column:not(:first-child) {
  flex: 1;
  min-width: 250px;
}

.footer-column:hover {
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-family-display);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-hover)
  );
  transition: width var(--transition-normal);
}

.footer-column:hover h4::after {
  width: 100%;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
  transition: transform var(--transition-fast);
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--text-light);
  transition: all var(--transition-normal);
  position: relative;
  padding-left: var(--spacing-sm);
}

.footer-column ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-normal);
  color: var(--primary-color);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: var(--spacing-md);
}

.footer-column ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Address alignment fix - ensure it aligns with other text in the column */
.footer-column ul li a[href*="maps"] {
  text-align: left;
  display: block;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: all var(--transition-normal);
  filter: brightness(1);
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.viq-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.viq-image {
  flex: 0 0 auto;
  margin-right: var(--spacing-lg);
  margin-bottom: 0;
  transition: transform var(--transition-normal);
  text-align: left;
}

.viq-image:hover {
  transform: scale(1.05);
}

.viq-image img {
  width: 100px;
  height: auto;
  filter: drop-shadow(var(--shadow-sm));
}

.viq-text {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  color: var(--text-light);
  transition: color var(--transition-normal);
  text-align: left;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}

.viq-section:hover .viq-text {
  color: var(--text-light);
}

.squared-border {
  /*border: 2px solid var(--primary-color);*/
  border-radius: 0;
  padding: 15px;
  /*background: rgba(111, 163, 136, 0.05);*/
  /*box-shadow: 0 2px 8px rgba(111, 163, 136, 0.1);*/
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    padding: 20px;
  }

  .footer-column {
    flex: 100%;
    margin: 0 0 20px 0;
    min-width: 100%;
  }

  .viq-section {
    flex-direction: column;
  }

  .viq-image {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .viq-text {
    max-width: 100%;
  }
}

/* Móviles pequeños (480px) */
@media (max-width: 480px) {
  .slider-content-container {
    padding: 40px 5% 30px;
    gap: 20px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .text-content {
    width: 100%;
    margin-bottom: 0;
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .text-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .carousel-wrapper {
    height: auto;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-wrapper .box-overslider img {
    width: 30%;
  }

  /* Imágenes en línea en móviles */
  .img_inline img {
    width: 100%;
  }

  /* Footer responsive styles for 480px */
  .footer-menu {
    flex-direction: column;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-column {
    flex: 1;
    margin: 0 0 20px 0;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-column:first-child {
    flex: 2;
    min-width: 100%;
    width: 100%;
  }

  .viq-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .viq-image {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: left;
  }

  .viq-text {
    max-width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
  }

  .img_inline > div {
    width: 100%;
  }
}

/*BRAIN*/

.brain-visual {
  width: 200px;
  height: 200px;
  margin: 2rem auto;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.brain-visual::before {
  content: "🧠";
  font-size: 6rem;
}

.brain-visual::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =============== MODERN SERVICE CARDS =============== */

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-header {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
  transition: all var(--transition-normal);
}

.service-title {
  flex: 1;
}

.service-title h3 {
  font-family: var(--font-family-display);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  margin: 0 0 5px 0;
  transition: color var(--transition-normal);
}

.service-card:hover .service-title h3 {
  color: var(--primary-color);
}

.service-subtitle {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-sm);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.service-content {
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-description {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.9;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.service-tag {
  background: rgba(111, 163, 136, 0.1);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  border: 1px solid rgba(111, 163, 136, 0.2);
  transition: all var(--transition-fast);
}

.service-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.service-carousel {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  margin-top: auto;
}

.service-card:hover .service-carousel {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.tech-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  padding: 4px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

/* Remove old carousel styles */
.service-carousel .carousel,
.service-carousel .carousel-item,
.service-carousel .carousel-item img,
.service-carousel .carousel-control-prev,
.service-carousel .carousel-control-next {
  display: none;
}

/* =============== RESPONSIVE DESIGN =============== */

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .service-header {
    padding: 20px 20px 15px;
    gap: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon img {
    width: 30px;
    height: 30px;
  }

  .service-title h3 {
    font-size: var(--font-size-lg);
  }

  .service-content {
    padding: 15px 20px 20px;
  }

  .contenedor-titulo h1 {
    font-size: 28px;
  }

  .main-subtitle {
    font-size: var(--font-size-lg);
    margin: 25px 0 15px 0;
  }

  .contenedor-titulo p {
    font-size: var(--font-size-base);
  }

  .service-highlights {
    gap: 15px;
    margin-top: 25px;
  }

  .highlight-item {
    padding: 10px 16px;
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 10px;
  }

  .service-header {
    padding: 15px 15px 10px;
  }

  .service-content {
    padding: 10px 15px 15px;
  }

  .tech-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(35px, 1fr));
    gap: 8px;
  }

  .tech-icon {
    width: 35px;
    height: 35px;
  }
}

/* =============== ANIMATIONS =============== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card:nth-child(9) {
  animation-delay: 0.9s;
}

/* Methodology Section */
.methodology-section {
  /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
  padding: 4rem 0;
  border-radius: 30px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Removed the colored bubble element above "Nuestra Metodología" */

.methodology-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Removed the lightbulb element above "Nuestra Metodología" */

.methodology-text {
  font-size: 1.4rem;
  color: #475569;
  line-height: 1.6;
  max-width: 1170px;
  margin: 0 auto;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: #64748b;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 6rem;
  /*padding: 4rem 2rem;*/
  /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}
