.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/placeholder.svg?height=500&width=1200');
    background-size: cover;
    background-position: center;
    min-height: 500px;
  }
  
  .map-container {
    position: relative;
    height: 400px;
    background-color: #f0f0f0;
  }
  
  .map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #e32219;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e32219;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 500;
  }

  .hero-button {
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hero-button-dark {
    background-color: #333;
  }

  .hero-button-primary {
    background-color: #e32219;
  }
  
  .hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-text {
    max-width: 600px;
  }

  .text-primary-color {
    color: #4c91cd;
  }

  .bg-primary-color {
    background-color: #4c91cd;
  }

  .product-image-left {
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #4c91cd;
    border-radius: 200px 15px 200px 15px;
    overflow: hidden;
  }
  .product-image-right {
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #4c91cd;
    border-radius: 15px 200px 15px 200px;
    overflow: hidden;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideOut {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  