  /* ===== CSS Custom Properties ===== */
  :root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5E2230;
    --burgundy-light: #9B4D5B;
    --blush: #F5D5D5;
    --blush-light: #FDF0F0;
    --blush-dark: #E8B4B4;
    --cream: #FFFAF8;
    --white: #FFFFFF;
    --text-dark: #2D1F24;
    --text-mid: #5A4550;
    --text-light: #8A7080;
    --gray-100: #F7F3F2;
    --gray-200: #EDE5E3;
    --gray-300: #D4C8C5;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.1);
    --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.12);
    --shadow-xl: 0 16px 60px rgba(123, 45, 59, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ===== Reset & Base ===== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
    color: var(--text-dark);
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }

  input, select, textarea {
    font-family: inherit;
    font-size: inherit;
  }

  /* ===== Utility ===== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-label {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: linear-gradient(135deg, var(--blush-light), var(--blush));
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--text-dark);
  }

  .section-header p {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* ===== Buttons ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
  }

  .btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 45, 59, 0.4);
  }

  .btn-secondary {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--blush-dark);
  }

  .btn-secondary:hover {
    border-color: var(--burgundy);
    background: var(--blush-light);
    transform: translateY(-2px);
  }

  .btn-white {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: var(--shadow-md);
  }

  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
  }

  .btn-outline-white:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* ===== Navigation ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 213, 213, 0.5);
    transition: var(--transition);
  }

  .nav.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--burgundy);
  }

  .logo span {
    letter-spacing: -0.02em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--burgundy);
    background: var(--blush-light);
  }

  .nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    box-shadow: 0 2px 12px rgba(123, 45, 59, 0.25);
  }

  .nav-cta:hover {
    background: var(--burgundy-dark) !important;
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    padding: 4px;
  }

  .hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger::before { top: -7px; }
  .hamburger::after { top: 7px; }

  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      #FDF0F0 0%,
      #FADADD 20%,
      #F5D5D5 40%,
      #E8B4C4 60%,
      #D4A0B4 80%,
      #C4889A 100%
    );
    z-index: 0;
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 600px 600px at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
      radial-gradient(ellipse 400px 400px at 80% 70%, rgba(123, 45, 59, 0.1) 0%, transparent 70%);
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 25% 25%, rgba(255,255,255,0.15) 1px, transparent 1px),
      radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    opacity: 0.6;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .gradient-text {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
  }

  .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
  }

  .hero-wave svg {
    width: 100%;
    height: 80px;
  }

  /* ===== Services ===== */
  .services {
    padding: 100px 0;
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blush), var(--burgundy));
    opacity: 0;
    transition: var(--transition);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blush);
    background: var(--white);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .service-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ===== About ===== */
  .about {
    padding: 100px 0;
    background: var(--cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .about-img-float {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
  }

  .about-img-float img {
    width: 300px;
    height: 240px;
    object-fit: cover;
  }

  .about-stats {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    gap: 12px;
  }

  .stat {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .stat-number {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--burgundy);
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
  }

  .about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 20px;
  }

  .about-content > p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
  }

  .about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .about-features li svg {
    flex-shrink: 0;
  }

  /* ===== Testimonials ===== */
  .testimonials {
    padding: 100px 0;
    background: var(--white);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blush);
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
  }

  .author-avatar strong {
    font-family: inherit;
  }

  .testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
  }

  .testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
  }

  /* ===== CTA Banner ===== */
  .cta-banner {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 50%, #B05060 100%);
  }

  .cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 500px 500px at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 300px 300px at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 70%);
  }

  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 16px;
  }

  .cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ===== Contact ===== */
  .contact {
    padding: 100px 0;
    background: var(--cream);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
  }

  .contact-info > p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-item strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .contact-item p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .contact-item a {
    color: var(--burgundy);
    font-weight: 600;
    transition: var(--transition);
  }

  .contact-item a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
  }

  .contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  /* ===== Contact Form ===== */
  .contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
  }

  .contact-form-wrap h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
  }

  .contact-form {
    display: grid;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: grid;
    gap: 6px;
  }

  .form-group label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-light);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }

  .form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .form-success svg {
    margin: 0 auto 16px;
    opacity: 0.8;
  }

  .form-success h4 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 8px;
  }

  .form-success p {
    color: var(--text-mid);
    font-size: 0.95rem;
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a:hover {
    color: var(--blush);
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-contact a:hover {
    color: var(--blush);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
      grid-column: span 2;
      max-width: 500px;
      margin: 0 auto;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(255, 250, 248, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 24px;
      gap: 4px;
      border-bottom: 1px solid var(--blush);
      box-shadow: var(--shadow-lg);
      transform: translateY(-120%);
      opacity: 0;
      transition: var(--transition);
      pointer-events: none;
    }

    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .nav-links a {
      width: 100%;
      text-align: center;
      padding: 12px 16px;
    }

    .nav-toggle {
      display: flex;
    }

    .hero {
      min-height: auto;
      padding: 140px 24px 100px;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero-actions {
      flex-direction: column;
      align-items: center;
    }

    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .hero-trust {
      gap: 20px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .about-img-float {
      right: 0;
      bottom: -24px;
    }

    .about-stats {
      left: 0;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
      grid-column: span 1;
      max-width: none;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .contact-form-wrap {
      padding: 28px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .cta-actions {
      flex-direction: column;
      align-items: center;
    }

    .cta-actions .btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }

    .hero {
      padding: 120px 16px 80px;
    }

    .services,
    .about,
    .testimonials,
    .contact {
      padding: 72px 0;
    }

    .service-card {
      padding: 28px 22px;
    }

    .contact-form-wrap {
      padding: 20px;
    }
  }
