  .contact-container {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      overflow: hidden;
      margin: 2rem auto;
      max-width: 1200px;
  }

  .contact-header {
      padding: 2rem 2rem 1rem;
      background: white;
  }

  .contact-header h6 {
      color: #6c757d;
      font-weight: 500;
      margin-bottom: 0.5rem;
  }

  .contact-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #212529;
      margin-bottom: 1rem;
  }

  .contact-header p {
      color: #6c757d;
      font-size: 1rem;
      line-height: 1.6;
  }

  .contact-content {
      padding: 0 2rem 2rem;
  }

  .contact-info {
      padding-right: 2rem;
  }

  .contact-item {
      margin-bottom: 2rem;
  }

  .contact-item h6 {
      font-weight: 600;
      color: #212529;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .contact-item p {
      color: #6c757d;
      margin-bottom: 0.25rem;
      font-size: 0.95rem;
  }

  .contact-item a {
      color: #0066cc;
      text-decoration: none;
  }

  .contact-item a:hover {
      text-decoration: underline;
  }

  .form-section {
      padding-left: 2rem;
      border-left: 1px solid #e9ecef;
  }

  .form-label {
      font-weight: 500;
      color: #495057;
      margin-bottom: 0.5rem;
  }

  .form-control,
  .form-select {
      border: 1px solid #ced4da;
      border-radius: 6px;
      padding: 0.75rem;
      font-size: 0.95rem;
  }

  .form-control:focus,
  .form-select:focus {
      border-color: #0066cc;
      box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
  }

  .btn-primary-contact {
      background-color: #dc3545;
      border-color: #dc3545;
      padding: 0.75rem 2rem;
      font-weight: 500;
      border-radius: 6px;
      color: #FFFFFF;
  }

  .btn-primary-contact:hover {
      background-color: #c82333;
      border-color: #bd2130;
  }

  .file-upload {
      border: 2px dashed #ced4da;
      border-radius: 6px;
      padding: 2rem;
      text-align: center;
      background-color: #f8f9fa;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .file-upload:hover {
      border-color: #0066cc;
      background-color: #f0f8ff;
  }

  .file-upload input {
      display: none;
  }

  .footer-text {
      font-size: 0.85rem;
      color: #6c757d;
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid #e9ecef;
  }

  .privacy-link {
      color: #0066cc;
      text-decoration: none;
  }

  .privacy-link:hover {
      text-decoration: underline;
  }

  @media (max-width: 768px) {
      .contact-header h1 {
          font-size: 2rem;
      }

      .form-section {
          border-left: none;
          border-top: 1px solid #e9ecef;
          padding-left: 0;
          padding-top: 2rem;
          margin-top: 2rem;
      }

      .contact-info {
          padding-right: 0;
      }
  }