/* Base Styles */
/* :root {
    --primary: #E5AA17;
    --primary-light: #f0ba36;
    --primary-dark: #c98f00;
    --foreground: #3F3E3E;
    --foreground-light: #6e6d6d;
    --background: #fff;
    --muted: #e6e6e6;
    --muted-foreground: #343C46;
    --dark: #121212;
    --border: #e6e6e6;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  } */

  :root {
    --primary: #E5AA17;
    --primary-light: #f0ba36;
    --primary-dark: #c98f00;
    --foreground: #3F3E3E;
    --foreground-light: #6e6d6d;
    --background: #fff;
    --muted: #e6e6e6;
    --muted-foreground: #343C46;
    --dark: #121212;
    --border: #e6e6e6;
    --dark: #000000;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  /* Reset & Globals */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
  }
  
  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
  }

  /* body {
    font-family: 'Zaio', 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura Bk BT', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
  } */
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Utilities */
  .glass {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
  }
  
  .text-primary {
    color: var(--primary);
  }
  
  .text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
  }
  
  .badge-primary {
    background-color: rgba(229, 170, 23, 0.1);
    color: var(--primary);
  }
  
  /* Animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .chevron-down {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    border-radius: 2px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-light);
  }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--foreground);
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
  }
  
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--foreground);
    font-weight: 500;
    border-radius: 2px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
  }
  
  .btn-ghost:hover {
    background-color: var(--muted);
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--background);
  }

  .btn-lgs {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    color: var(--dark);
  }
  
  .btn-primary-full, .btn-outline-full, .btn-form {
    width: 100%;
    padding: 0.75rem;
    border-radius: 2px;
    margin-top: 0.5rem;
  }
  
  .btn-primary-full, .btn-form {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-outline-full {
    border: 1px solid var(--border);
  }
  
  .arrow-icon {
    margin-left: 0.5rem;
    transition: transform 0.2s;
  }
  
  .btn-primary:hover .arrow-icon {
    transform: translateX(3px);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.3s;
  }
  
  .navbar.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .logo-image, .footer-logo {
    height: 40px;
    width: auto;
  }
  
  .nav-desktop, .nav-buttons-desktop {
    display: none;
  }
  
  .nav-link {
    position: relative;
    padding: 0.375rem 0.5rem;
    transition: color 0.2s;
    color: var(--foreground-light);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
  }
  
  .nav-link:hover {
    color: var(--foreground-light);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .close-icon {
    display: none;
    stroke: #c98f00;
  }
  
  .mobile-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  .mobile-menu.open {
    height: auto;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  
  .nav-mobile {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
  }
  
  .nav-mobile .nav-link {
    padding: 0.75rem 0;
  }
  
  .nav-buttons-mobile {
    padding-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .nav-desktop, .nav-buttons-desktop {
      display: flex;
      align-items: center;
    }
    
    .nav-desktop {
      gap: 1.5rem;
    }
    
    .nav-buttons-desktop {
      gap: 0.75rem;
      margin-left: 1.5rem;
    }
    
    .menu-toggle {
      display: none;
    }
    
    .mobile-menu {
      display: none;
    }
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: var(--dark);
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: var(--background);
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--background);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }
  
  .scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--background);
    font-size: 0.875rem;
  }
  
  .hero-image-container {
    position: relative;
    margin: 0 auto;
    max-width: 28rem;
  }
  
  .hero-image-wrapper {
    position: relative;
  }
  
  .hero-image {
    position: relative;
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
  }
  
  .hero-image-glow {
    position: absolute;
    inset: -0.5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 0.75rem;
    filter: blur(15px);
    opacity: 0.75;
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 0;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 0.75;
    }
    50% {
      opacity: 0.4;
    }
  }
  
  .floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-badge.top-left {
    top: -1.5rem;
    left: -1.5rem;
    animation-delay: 1s;
  }
  
  .floating-badge.bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
  }
  
  .dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
  }
  
  .dot.green {
    background-color: #10b981;
  }
  
  .dot.blue {
    background-color: var(--primary);
  }
  
  .hero-decoration-1,
  .hero-decoration-2 {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(7rem);
    z-index: -1;
  }
  
  .hero-decoration-1 {
    top: 25%;
    left: 0;
    background-color: rgba(229, 170, 23, 0.15);
  }
  
  .hero-decoration-2 {
    bottom: 25%;
    right: 0;
    background-color: rgba(52, 60, 70, 0.1);
  }
  
  @media (min-width: 768px) {
    .hero {
      padding-top: 10rem;
      padding-bottom: 8rem;
    }
    
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
      text-align: left;
    }
    
    .hero-title {
      font-size: 3rem;
    }
    
    .hero-description {
      margin-left: 0;
      margin-right: 0;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .scroll-indicator {
      justify-content: flex-start;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.5rem;
    }
  }
  
  /* Features Section */
  .features {
    padding: 5rem 0;
    background-color: var(--muted);
  }
  
  .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .section-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    background-color: var(--background);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }

  @media (max-width: 768px) {
    .desktop-card {
      display: none;
    }
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(229, 170, 23, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    color: var(--muted-foreground);
  }
  
  @media (min-width: 640px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  /* Service Gallery Section */
  .service-gallery {
    padding: 5rem 0;
    background-color: var(--muted);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
  }
  
  .gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  
  .gallery-item:hover .gallery-image img {
    transform: scale(1.05);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s;
  }
  
  .gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  
  .gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
  }
  
  @media (min-width: 640px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* How It Works Detailed Section */
  .how-it-works-detailed {
    padding: 5rem 0;
    background-color: var(--background);
  }
  
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  .process-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }
  
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    height: 4rem;
    width: 2px;
    background-color: var(--primary);
    display: none;
  }
  
  .process-step-content {
    flex: 1;
    order: 2;
  }
  
  .process-step-image {
    flex: 1;
    order: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
  }
  
  .step-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .step-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .step-features {
    list-style: none;
  }
  
  .step-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(229, 170, 23, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 0.875rem;
  }
  
  @media (min-width: 768px) {
    .process-step {
      flex-direction: row;
      align-items: center;
    }
    
    .process-step:not(:last-child)::after {
      display: block;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .process-step-content {
      order: 1;
    }
    
    .process-step-image {
      order: 2;
    }
    
    .process-step.reverse .process-step-content {
      order: 2;
    }
    
    .process-step.reverse .process-step-image {
      order: 1;
    }
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 5rem 0;
    background-color: var(--muted);
  }
  
  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    color: var(--muted-foreground);
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background-color: var(--muted);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }
  
  .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .testimonial-quote {
    margin-bottom: 1.5rem;
    color: var(--foreground);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  .testimonial-name {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  @media (min-width: 768px) {
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Contact Section */
  .contact {
    padding: 5rem 0;
    background-color: var(--background);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-description {
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    max-width: 32rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--foreground);
  }
  
  .contact-form-container {
    background-color: var(--background);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* CTA Section */
  .cta {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(229, 170, 23, 0.1), rgba(229, 170, 23, 0.05));
  }
  
  .cta-container {
    background-color: var(--background);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    box-shadow: var(--shadow);
  }
  
  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-description {
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto 2rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  @media (min-width: 640px) {
    .cta-container {
      padding: 3rem;
    }
    
    .cta-buttons {
      flex-direction: row;
    }
    
    .cta-title {
      font-size: 2rem;
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark);
    color: #ffffff;
    padding: 3rem 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    margin-bottom: 1rem;
  }
  
  .footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    max-width: 20rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .social-link:hover {
    color: var(--primary);
  }
  
  .footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--background);
  }
  
  .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
  }
  
  .footer-menu a:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
  }
  
  .footer-legal a:hover {
    color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }