/* ============================================
   CAPELO'S GROUP CORP - Modern Design System
   ============================================ */

:root {
  /* Brand Colors - Blue Palette (Primary) */
  --brand-blue: #1e40af;
  --brand-blue-dark: #1e3a8a;
  --brand-blue-light: #3b82f6;
  --brand-blue-soft: #dbeafe;
  
  /* Neutrals */
  --ink: #111827;
  --muted: #6b7280;
  --bg: #f9fafb;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Layout */
  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  font-size: var(--font-size-base);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Top Bar */
.top-bar {
  background: #1f2937;
  color: white;
  padding: var(--space-xs) 0;
  font-size: var(--font-size-sm);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar-item:hover {
  opacity: 0.8;
}

.top-bar-item .icon {
  font-size: var(--font-size-base);
}

/* Header */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--brand-blue);
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--brand-blue);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--brand-blue);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.btn:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

.btn-ghost:hover {
  background: var(--brand-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
  padding: var(--space-3xl) 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  font-weight: 300;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

/* Quick Services */
.quick-services {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.quick-service-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.quick-service-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quick-service-card .service-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.quick-service-card h3 {
  font-size: var(--font-size-xl);
  color: var(--ink);
  font-weight: 600;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-blue);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
}

/* About Section */
.about-section {
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  background: var(--bg-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.about-text {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: var(--muted);
}

.about-text p {
  margin-bottom: var(--space-lg);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: var(--space-xl) 0 var(--space-3xl) 0;
  background: var(--bg-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.mission-vision-card {
  background: var(--bg);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.mission-vision-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: var(--space-md);
}

.mission-vision-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: var(--font-size-lg);
}

.values-section {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 2px solid var(--border);
}

.values-section h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.values-section > p {
  text-align: center;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.value-item {
  background: var(--bg);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--brand-blue);
}

.value-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: var(--space-sm);
}

.value-item p {
  color: var(--muted);
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-blue);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--brand-blue-soft);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-icon-large {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-book-btn {
  margin-top: var(--space-md);
  width: 100%;
  text-align: center;
  display: block;
}

/* Benefits Section */
.benefits-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-white) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.benefit-card {
  background: var(--bg-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-blue);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrapper {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon {
  font-size: 4rem;
  display: inline-block;
  padding: var(--space-lg);
  background: var(--brand-blue-soft);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: var(--brand-blue);
  transform: scale(1.1) rotate(5deg);
}

.benefit-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.benefit-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: var(--font-size-base);
}

/* Stats Section */
.stats-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Experts Section */
.experts-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-white);
  text-align: center;
}

.experts-cta {
  margin-top: var(--space-xl);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--bg-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  overflow: hidden;
  border: 3px solid var(--brand-blue);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--brand-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-2xl);
}

.testimonial-content h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.testimonial-title {
  font-size: var(--font-size-sm);
  color: var(--brand-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

/* Contact Section */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-white);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--bg);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s;
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: var(--space-xs);
}

.contact-details p,
.contact-details a {
  font-size: var(--font-size-lg);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--brand-blue);
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
}

.contact-form {
  background: var(--bg-white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--font-size-base);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  display: none;
  padding: var(--space-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Booking Calendar Section */
.booking-calendar-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-white);
}

.calendar-wrapper {
  max-width: 1000px;
  margin: var(--space-2xl) auto 0;
}

/* Footer */
.main-footer {
  background: #1f2937;
  color: white;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-column h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: white;
}

.social-media {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.2);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact .icon {
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.subscribe-form input {
  padding: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: var(--font-size-base);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  
  .top-bar-left,
  .top-bar-right {
    flex-direction: column;
    gap: var(--space-xs);
    justify-content: center;
    width: 100%;
  }
  
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .logo {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    gap: var(--space-md);
    text-align: center;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
    margin: 0 auto;
  }
  
  .navbar-cta {
    gap: var(--space-xs);
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  
  .navbar-cta .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
    flex: 1 1 auto;
    min-width: 120px;
    max-width: 200px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-xl);
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    max-width: 100%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .calendar-wrapper iframe {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .about-section,
  .services-section,
  .benefits-section,
  .testimonials-section,
  .contact-section {
    padding: var(--space-2xl) 0;
  }
}

