 body {
      background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Segoe UI', sans-serif;
    }

    .floating-form-container {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 1rem;
      box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
      padding: 2rem;
      max-width: 900px;
      width: 100%;
      backdrop-filter: blur(10px);
      animation: fadeIn 0.6s ease-in-out;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .form-section-title {
      border-left: 5px solid #3c261c;
      padding-left: 1rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      min-width: 100px;
    }

    textarea.form-control {
      resize: none;
    }
    
    /* Apply custom dark brown color */
.text-primary {
  color: #3c261c !important;
}

.btn-primary,
.btn-secondary,
.btn-success {
  background-color: #3c261c;
  border-color: #3c261c;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-success:hover {
  background-color: #2e1e15;
  border-color: #2e1e15;
}
