/* ===========================================
   GENERAL ENHANCEMENTS - Premium Beauty Salon Design
   =========================================== */

/* Enhanced Button Styles */
.btn-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.btn-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-enhanced:hover::before {
  left: 100%;
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(137, 108, 108, 0.3);
}

.btn-primary-enhanced {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(137, 108, 108, 0.3);
}

.btn-primary-enhanced:hover {
  background: linear-gradient(135deg, #7a5a5a, #6a4a4a);
  color: white;
}

.btn-secondary-enhanced {
  background: rgba(255, 255, 255, 0.9);
  color: #896C6C;
  border: 2px solid #896C6C;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.btn-secondary-enhanced:hover {
  background: #896C6C;
  color: white;
}

/* Enhanced Card Styles */
.card-enhanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(137, 108, 108, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.2);
}

/* Enhanced Section Headers */
.section-header-enhanced {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge-enhanced {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInScale 0.8s ease-out;
}

.section-badge-enhanced i {
  margin-right: 0.5rem;
}

.section-title-enhanced {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 30%, #E5BEB5 70%, #d4a8a0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.section-subtitle-enhanced {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.section-divider-enhanced {
  width: 6rem;
  height: 4px;
  background: linear-gradient(90deg, #E5BEB5, #896C6C);
  border-radius: 2px;
  margin: 0 auto;
  animation: slideIn 1s ease-out 0.6s both;
}

/* Enhanced Background Elements */
.bg-decorative-enhanced {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bg-shape-enhanced {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(137, 108, 108, 0.1), rgba(229, 190, 181, 0.05));
  animation: float 8s ease-in-out infinite;
}

.bg-shape-enhanced:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.bg-shape-enhanced:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 3s;
}

.bg-shape-enhanced:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-delay: 6s;
}

/* ===========================================
   HERO SECTION ENHANCEMENTS
   =========================================== */

.hero-enhanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-enhanced {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(137, 108, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(229, 190, 181, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(238, 230, 202, 0.95) 0%, rgba(238, 230, 202, 0.85) 100%);
}

.hero-shapes-enhanced {
  position: absolute;
  inset: 0;
}

.hero-shape-enhanced {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.hero-shape-enhanced:nth-child(1) {
  width: 20rem;
  height: 20rem;
  background: #896C6C;
  top: 8%;
  left: 8%;
}

.hero-shape-enhanced:nth-child(2) {
  width: 15rem;
  height: 15rem;
  background: #E5BEB5;
  bottom: 8%;
  right: 8%;
}

.hero-shape-enhanced:nth-child(3) {
  width: 10rem;
  height: 10rem;
  background: #896C6C;
  top: 45%;
  left: 20%;
}

.hero-content-enhanced {
  position: relative;
  z-index: 10;
  max-width: 5xl;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title-enhanced {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 25%, #E5BEB5 75%, #d4a8a0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: slideInFromBottom 1.2s ease-out 0.3s both;
}

.hero-subtitle-enhanced {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 3xl;
  margin: 0 auto 3rem;
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

.hero-cta-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: slideInFromBottom 1s ease-out 0.9s both;
}

.hero-btn-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
}

.hero-btn-primary-enhanced {
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
}

.hero-btn-primary-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(137, 108, 108, 0.4);
}

.hero-btn-secondary-enhanced {
  border: 3px solid #896C6C;
  color: #896C6C;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary-enhanced:hover {
  background: #896C6C;
  color: white;
  transform: translateY(-3px);
}

/* ===========================================
   SERVICES SECTION ENHANCEMENTS
   =========================================== */

.services-enhanced {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 230, 202, 0.7));
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card-enhanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(137, 108, 108, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.service-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.2);
}

.service-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.service-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.service-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.service-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
.service-card-enhanced:nth-child(5) { animation-delay: 0.5s; }
.service-card-enhanced:nth-child(6) { animation-delay: 0.6s; }

.service-image-enhanced {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-enhanced:hover .service-image-enhanced img {
  transform: scale(1.1);
}

.service-overlay-enhanced {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(137, 108, 108, 0.8), rgba(229, 190, 181, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-enhanced:hover .service-overlay-enhanced {
  opacity: 1;
}

.service-content-enhanced {
  padding: 2rem;
}

.service-title-enhanced {
  font-size: 1.5rem;
  font-weight: 700;
  color: #896C6C;
  margin-bottom: 1rem;
}

.service-description-enhanced {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price-enhanced {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E5BEB5;
  margin-bottom: 1rem;
}

.service-btn-enhanced {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #896C6C, #7a5a5a);
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.3);
}

/* ===========================================
   GALLERY SECTION ENHANCEMENTS
   =========================================== */

.gallery-enhanced {
  padding: 5rem 0;
  background: white;
}

.gallery-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item-enhanced {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(137, 108, 108, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.gallery-item-enhanced:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(137, 108, 108, 0.2);
}

.gallery-item-enhanced:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-enhanced:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-enhanced:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-enhanced:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-enhanced:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-enhanced:nth-child(6) { animation-delay: 0.6s; }

.gallery-image-enhanced {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-enhanced:hover .gallery-image-enhanced {
  transform: scale(1.1);
}

.gallery-overlay-enhanced {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(137, 108, 108, 0.9), rgba(229, 190, 181, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-enhanced:hover .gallery-overlay-enhanced {
  opacity: 1;
}

.gallery-zoom-enhanced {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #896C6C;
  font-size: 1.25rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item-enhanced:hover .gallery-zoom-enhanced {
  transform: scale(1);
}

/* ===========================================
   BLOG SECTION ENHANCEMENTS
   =========================================== */

.blog-enhanced {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(238, 230, 202, 0.8), rgba(255, 255, 255, 0.9));
}

.blog-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card-enhanced {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(137, 108, 108, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.blog-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(137, 108, 108, 0.2);
}

.blog-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.blog-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.blog-card-enhanced:nth-child(3) { animation-delay: 0.3s; }

.blog-image-enhanced {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-enhanced:hover .blog-image-enhanced img {
  transform: scale(1.05);
}

.blog-content-enhanced {
  padding: 2rem;
}

.blog-date-enhanced {
  color: #896C6C;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-title-enhanced {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt-enhanced {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link-enhanced {
  display: inline-flex;
  align-items: center;
  color: #896C6C;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link-enhanced:hover {
  color: #7a5a5a;
  transform: translateX(5px);
}

.blog-link-enhanced i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-link-enhanced:hover i {
  transform: translateX(3px);
}

/* ===========================================
   CONTACT SECTION ENHANCEMENTS
   =========================================== */

.contact-enhanced {
  padding: 5rem 0;
  background: linear-gradient(135deg, #896C6C 0%, #7a5a5a 100%);
  color: white;
}

.contact-content-enhanced {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-enhanced {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item-enhanced:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-icon-enhanced {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.contact-title-enhanced {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-text-enhanced {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Social Links */
.contact-social-enhanced {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.contact-social-title-enhanced {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-social-links-enhanced {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-social-link-enhanced {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social-link-enhanced.facebook-enhanced {
  background: #1877f2;
}

.contact-social-link-enhanced.instagram-enhanced {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.contact-social-link-enhanced.whatsapp-enhanced {
  background: #25d366;
}

.contact-social-link-enhanced.youtube-enhanced {
  background: #ff0000;
}

.contact-social-link-enhanced:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Quick Contact Buttons */
.contact-cta-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.contact-btn-enhanced i {
  margin-right: 0.5rem;
}

/* Map Section */
.contact-map-enhanced {
  position: relative;
}

.contact-map-container-enhanced {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 450px;
}

.contact-map-container-enhanced iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Map Info Overlay */
.contact-map-info-enhanced {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-map-address-enhanced,
.contact-map-hours-enhanced {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2d3748;
}

.contact-map-address-enhanced i,
.contact-map-hours-enhanced i {
  color: #896C6C;
  font-size: 1.25rem;
}

.contact-map-address-enhanced strong,
.contact-map-hours-enhanced strong {
  display: block;
  color: #1a202c;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-map-address-enhanced span,
.contact-map-hours-enhanced span {
  font-size: 0.75rem;
  color: #718096;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content-enhanced {
    grid-template-columns: 300px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-enhanced {
    padding: 3rem 0;
  }

  .contact-content-enhanced {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .contact-social-enhanced {
    order: -1;
  }

  .contact-cta-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .contact-btn-enhanced {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .contact-btn-enhanced i {
    margin-right: 0.25rem;
  }

  .contact-map-container-enhanced {
    height: 350px;
  }

  .contact-map-info-enhanced {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .contact-info-enhanced {
    grid-template-columns: 1fr;
  }

  .contact-cta-enhanced {
    grid-template-columns: 1fr;
  }

  .contact-social-links-enhanced {
    gap: 0.75rem;
  }

  .contact-social-link-enhanced {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .contact-map-container-enhanced {
    height: 300px;
  }

  .contact-map-info-enhanced {
    padding: 1rem;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }
}


/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-3deg);
  }
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
  .hero-content-enhanced {
    padding: 1rem;
  }

  .services-grid-enhanced,
  .blog-grid-enhanced {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-content-enhanced {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-title-enhanced {
    font-size: 2.5rem;
  }

  .hero-title-enhanced {
    font-size: 4rem;
  }

  .services-grid-enhanced,
  .blog-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .contact-info-enhanced {
    grid-template-columns: 1fr;
  }

  .hero-cta-enhanced {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn-enhanced {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .section-title-enhanced {
    font-size: 2rem;
  }

  .hero-title-enhanced {
    font-size: 3rem;
  }

  .contact-form-enhanced {
    padding: 1.5rem;
  }

  .service-card-enhanced,
  .blog-card-enhanced {
    margin: 0 1rem;
  }
}
