:root {
  --primary: #00507c;
  --primary-dark: #003d5c;
  --muted: #6c757d;
  --bg: #f7fbfc;
  --rounded: 14px;
  --hero-font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--hero-font);
  background: white;
  color: #0b2630;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-brand img {
  filter: none;
}

/* ========== BOTONES ========== */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, rgba(245, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
  padding-top: 64px;
  padding-bottom: 56px;
}

.hero-title {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  color: #0b2430;
}

.hero-image {
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--rounded);
  background: white;
}

/* ========== ICONOS ========== */
.icon-circle {
  background: var(--primary) !important;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
}

.badge.bg-primary {
  background-color: var(--primary) !important;
  color: white !important;
}

/* ========== TARJETAS ========== */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  background-color: #f8f9fa;
  padding: 10px;
}

.card-title {
  font-weight: 600;
}

/* ========== FOOTER UNIFICADO ========== */
footer {
  background: var(--primary) !important;
  color: white !important;
}

footer .text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer a.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

footer a.text-white-50:hover {
  color: white !important;
  text-decoration: underline !important;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

footer .social-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}

footer .social-links a:hover {
  color: white !important;
  transform: translateY(-2px);
}

/* ========== FORMULARIOS ========== */
.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

/* ========== CARRITO ========== */
.service-card {
  transition: transform 0.4s ease;
}

.service-card.added {
  transform: translateX(15px);
}

.cart-modal-content {
  border-radius: 12px;
}

.cart-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00507c;
}

#cartBtn {
  cursor: pointer;
}

#cartBtn:hover {
  opacity: 0.8;
}

.cart-badge {
  font-size: 0.7rem;
  padding: 0.25em 0.5em;
  min-width: 20px;
}

.remove-item {
  color: #dc3545;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background-color: #f8d7da;
  transform: scale(1.1);
}

.price-badge {
  background-color: #00507c;
  color: white;
  font-weight: 500;
  padding: 0.35em 0.65em;
  border-radius: 20px;
}

.empty-cart-message {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}

.empty-cart-message i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #dee2e6;
}

/* ========== NUEVOS ESTILOS PARA LA TIENDA ========== */

/* Grid de Productos */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  height: 100%;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 80, 124, 0.18);
}

.product-card .card-img-top {
  height: 220px;
  width: 100%;
  object-fit: contain;
  background-color: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.btn-add-cart {
  width: 100%;
  padding: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-add-cart i {
  margin-right: 8px;
}

.btn-add-cart.added {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white;
}

/* Detalles del item en el carrito */
.cart-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 500;
  color: var(--primary);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 15px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-quantity button {
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-item-quantity button:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

.cart-item-quantity span {
  min-width: 20px;
  text-align: center;
  font-weight: 500;
}

/* Mensajes de estado (autenticación, pago) */
.store-message {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.auth-status {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}

.payment-status {
  background-color: #d1e7dd;
  border: 1px solid #198754;
  color: #0f5132;
}

.payment-status.error {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
  color: #842029;
}

/* Botón de checkout */
.btn-checkout {
  background-color: #198754;
  border-color: #198754;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-checkout:hover:not(:disabled) {
  background-color: #146c43;
  border-color: #13653f;
  transform: translateY(-2px);
}

.btn-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner de carga */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
  margin-right: 8px;
}

/* ========== REDES SOCIALES ========== */
.social-links a {
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white !important;
  transform: translateY(-2px);
}

/* ========== ANIMACIONES ========== */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ========== NOTIFICACIONES ========== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease;
}

.notification.fade-out {
  animation: slideOut 0.3s ease;
}

/* ========== MEDIA QUERIES GENERALES ========== */
@media (max-width: 991px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  footer .text-md-end {
    text-align: left !important;
    margin-top: 1rem;
  }

  .price-badge {
    font-size: 0.8rem;
    padding: 0.25em 0.5em;
  }

  .cart-item-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-actions {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
  }
}

/* ========== CARRUSEL DE SERVICIOS ========== */
#servicesCarousel {
  position: relative;
  padding: 30px 0 60px;
}

#servicesCarousel .carousel-inner {
  padding: 20px 0 40px;
}

/* TARJETAS - ESTILO BASE */
#servicesCarousel .card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

#servicesCarousel .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 80, 124, 0.18);
}

#servicesCarousel .card-img-top {
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

/* FLECHAS DE NAVEGACIÓN */
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

#servicesCarousel .carousel-control-prev {
  left: -25px;
}

#servicesCarousel .carousel-control-next {
  right: -25px;
}

#servicesCarousel .carousel-control-prev:hover,
#servicesCarousel .carousel-control-next:hover {
  background: var(--primary-dark);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

/* INDICADORES */
#servicesCarousel .carousel-indicators {
  bottom: -20px;
  margin-bottom: 0;
  gap: 8px;
}

#servicesCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background-color: transparent;
  margin: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#servicesCarousel .carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

/* MÓVIL Y TABLET (hasta 991px) - SOLO 1 TARJETA POR SLIDE */
@media (max-width: 991px) {
  #servicesCarousel .carousel-inner .row {
    display: flex;
    justify-content: center;
    margin: 0;
  }

  #servicesCarousel .carousel-inner .col-12,
  #servicesCarousel .carousel-inner .col-sm-6,
  #servicesCarousel .carousel-inner .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #servicesCarousel .card {
    max-width: 450px;
    margin: 0 auto;
  }

  #servicesCarousel .card-img-top {
    height: 200px;
  }

  /* Flechas más pequeñas para móvil */
  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 80, 124, 0.9);
  }

  #servicesCarousel .carousel-control-prev {
    left: 5px;
  }

  #servicesCarousel .carousel-control-next {
    right: 5px;
  }

  #servicesCarousel .carousel-control-prev-icon,
  #servicesCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
}

/* MÓVIL PEQUEÑO (hasta 576px) */
@media (max-width: 576px) {
  #servicesCarousel .card {
    max-width: 340px;
    margin: 0 15px;
  }

  #servicesCarousel .card-img-top {
    height: 180px;
    padding: 12px;
  }
}

/* DESKTOP (992px en adelante) - 3 TARJETAS POR FILA */
@media (min-width: 992px) {
  #servicesCarousel .carousel-inner .row {
    display: flex;
    flex-wrap: wrap;
  }

  #servicesCarousel .carousel-inner .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  #servicesCarousel .card {
    max-width: 100%;
    margin: 0 10px;
  }
}

/* DESKTOP GRANDE (1200px+) - FLECHAS MÁS SEPARADAS */
@media (min-width: 1200px) {
  #servicesCarousel .carousel-control-prev {
    left: -35px;
  }

  #servicesCarousel .carousel-control-next {
    right: -35px;
  }
}

/* ========== ESTILOS PARA PÁGINAS DE SERVICIO ========== */
.service-hero {
  background: linear-gradient(135deg, #00507c 0%, #003d5c 100%);
  color: white;
  padding: 100px 0 80px;
  margin-top: 76px;
}

.service-hero-image {
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #00507c;
  border-radius: 2px;
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00507c 0%, #003d5c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tech-badge {
  background-color: #f0f7ff;
  border: 1px solid #d0e3ff;
  color: #00507c;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  margin: 5px;
  display: inline-block;
}

.benefit-card {
  border-left: 4px solid #00507c;
  padding-left: 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(10px);
}

.case-study-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 10px 30px rgba(0, 80, 124, 0.1);
  transform: translateY(-5px);
}

.process-step {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}

.process-step:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  background-color: #00507c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.process-step:nth-child(1):before {
  content: '1';
}

.process-step:nth-child(2):before {
  content: '2';
}

.process-step:nth-child(3):before {
  content: '3';
}

.process-step:nth-child(4):before {
  content: '4';
}

.process-step:nth-child(5):before {
  content: '5';
}

/* Responsive para páginas de servicio */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 0 60px;
    margin-top: 66px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }
}

/* ========== IMÁGENES INFERIORES ========== */
.cta-image,
.contact-image,
.team-image {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform .3s ease;
}

/* efecto sutil */
.cta-image:hover,
.contact-image:hover,
.team-image:hover {
  transform: scale(1.03);
}

/* sección más aire */
.cta-section,
.contact-section {
  padding: 80px 0;
}

.cta-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

/* ========== ESTILOS PARA WHATSAPP ========== */
.whatsapp-btn {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1da851 !important;
  border-color: #1da851 !important;
  transform: translateY(-2px);
}

.whatsapp-icon {
  margin-right: 8px;
}

.form-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-options .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Estilo para mostrar/ocultar mensaje */
.whatsapp-note {
  background-color: #f0fff4;
  border: 1px solid #25D366;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  display: none;
}

.whatsapp-note.show {
  display: block;
}

/* ========== CONOCENOS ========== */
#conocenos {
  position: relative;
  overflow: hidden;
}

/* Divisor decorativo */
.divider-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.divider-custom-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 50px;
}

.divider-custom-icon {
  margin: 0 15px;
  font-size: 1.2rem;
}

/* Tarjetas de Misión y Visión */
.mission-card,
.vision-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border-radius: 20px !important;
  background: linear-gradient(145deg, #ffffff, #f8fbfc);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 80, 124, 0.15) !important;
}

/* Decoración superior en tarjetas */
.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 20px 20px 0 0;
}

/* Iconos circulares */
.mission-icon,
.vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, rgba(0, 80, 124, 0.1), rgba(0, 80, 124, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.mission-card:hover .mission-icon i,
.vision-card:hover .vision-icon i {
  color: white !important;
}

/* Badge de experiencia */
#conocenos .badge {
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(0, 80, 124, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#conocenos .badge:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: scale(1.05);
}

/* Responsive para Conócenos */
@media (max-width: 768px) {
  #conocenos {
    padding: 60px 0 !important;
  }

  #conocenos .display-6 {
    font-size: 2.2rem;
  }

  .mission-card .card-body,
  .vision-card .card-body {
    padding: 2rem !important;
  }

  .mission-icon,
  .vision-icon {
    width: 50px;
    height: 50px;
  }

  .mission-icon i,
  .vision-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  #conocenos .lead {
    font-size: 1rem;
  }

  .mission-card .card-body,
  .vision-card .card-body {
    padding: 1.5rem !important;
  }

  #conocenos .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
  }
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#conocenos .card {
  animation: fadeInUp 0.8s ease forwards;
}

#conocenos .card:first-child {
  animation-delay: 0.2s;
}

#conocenos .card:last-child {
  animation-delay: 0.4s;
}

/* ========== ESTILOS PARA PÁGINAS LEGALES ========== */
.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 100px 0 60px;
  margin-top: 76px;
}

.legal-section {
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.legal-section h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.legal-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.legal-section h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.legal-section h4 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #444;
}

.legal-section p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: #555;
  line-height: 1.6;
}

.legal-section strong {
  color: var(--primary);
}

.legal-date {
  background: #f0f7ff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.legal-date p {
  margin-bottom: 0;
  color: #333;
}

/* Responsive para páginas legales */
@media (max-width: 768px) {
  .legal-hero {
    padding: 80px 0 40px;
    margin-top: 66px;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .legal-section {
    padding: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.6rem;
  }

  .legal-section h3 {
    font-size: 1.2rem;
  }

  .legal-section h4 {
    font-size: 1.1rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.95rem;
  }

  .legal-date {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 576px) {
  .legal-hero {
    padding: 60px 0 30px;
  }

  .legal-section {
    padding: 1.2rem;
  }

  .legal-section h2 {
    font-size: 1.4rem;
  }

  .legal-section h2:after {
    width: 60px;
    height: 3px;
  }
}