.hero {
    background-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1200&q=80");
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 64px;
    color: white;
    text-align: center;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.5)
    );
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Form Section */
  .form-section {
    margin-top: -150px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  
  .card {
    background-color: white;
    border-radius: 8px;
    box-shadow:
      0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
  
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .form-column {
    order: 2;
  }
  
  .info-column {
    order: 1;
  }
  
  @media (min-width: 768px) {
    .form-column {
      order: 1;
    }
  
    .info-column {
      order: 2;
    }
  }
  
  .form-card,
  .info-card,
  .company-info {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
  }
  
  .form-card h2,
  .info-card h2,
  .company-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
  }
  
  .info-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Contact Form */
  .success-message {
    display: none;
    background-color: #ecfdf5;
    color: #047857;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    align-items: center;
  }
  
  .success-message.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
  }
  
  .success-message i {
    margin-right: 8px;
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition:
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  input.error,
  textarea.error {
    border-color: #ef4444;
  }
  
  .error-message {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 4px;
    align-items: center;
  }
  
  .error-message.active {
    display: flex;
  }
  
  .error-message i {
    margin-right: 4px;
    font-size: 0.75rem;
  }
  
  button[type="submit"] {
    width: 100%;
    background-color: #015243;
    color: white;
    border: 1 px solid transparent;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
    cursor: pointer;
    transition:
      background-color 0.3s ease,
      transform 0.2s ease;
  }
  
  button[type="submit"]:hover {
    background-color: white;
    color:#015243;
    border: 1px solid #015243;
  }
  
  button[type="submit"]:active {
    transform: scale(0.98);
  }
  
  button[type="submit"].loading {
    background-color: #93c5fd;
    cursor: not-allowed;
  }
  
  /* Company Info */
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  
  .icon-circle {
    background-color: #faece1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .icon-circle i {
    color: #015243;
    font-size: 0.875rem;
  }
  
  .contact-item h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 2px;
  }
  
  .contact-item p {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .business-hours {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
  }
  
  .business-hours p {
    font-size: 0.75rem;
    color: #9ca3af;
  }
  
  /* Map Section */
  .map-section {
    margin-top: 48px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  .map-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
  }
  
  .map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
  }
  
  .map-address {
    margin-top: 16px;
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .map-address span {
    font-weight: 500;
  }