   .inquireform-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 2rem;
      flex-direction: column;
    }

    .inquireform-content {
      width: 100%;
      max-width: 700px;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .inquireform-heading {
      text-align: center;
    }

    .inquireform-heading h1 {
      margin: 0;
      color: var(--eco-green);
      font-size: 2.5rem;
      font-weight: 800;
    }

    .inquireform-container {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
      overflow: hidden;
    }

    .inquireform-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .inquireform-subtitle {
      margin: 0;
      color: var(--text-light);
      font-size: 1rem;
      font-weight: 500;
    }

    /* Progress Indicator */
    .inquireform-progress {
      margin-bottom: 1.5rem;
    }
    .inquireform-progress-steps {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .inquireform-progress-step {
      flex: 1;
      text-align: center;
      color: var(--text-light);
      font-weight: 600;
    }
    .inquireform-progress-step.active {
      color: var(--eco-green);
      font-weight: 700;
    }
    .inquireform-progress-bar {
      background: #ddd;
      height: 6px;
      border-radius: 3px;
      overflow: hidden;
    }
    .inquireform-progress-fill {
      background: var(--eco-green);
      height: 100%;
      width: 0%;
      transition: width 0.3s ease;
    }

    .inquireform-step {
      display: none;
    }
    .inquireform-step.active {
      display: block;
    }

    .inquireform-group {
      margin-bottom: 1.5rem;
    }
    .inquireform-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    .inquireform-input,
    .inquireform-select,
    .inquireform-textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid #ccc;
      border-radius: 0.5rem;
      font-size: 1rem;
      box-sizing: border-box;
    }
    .inquireform-textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* Phone input styling */
    .phone-container {
      display: flex;
      border: 1px solid #ccc;
      border-radius: 0.5rem;
      overflow: hidden;
    }
    .phone-prefix {
      background: #f1f6f3;
      color: var(--eco-green);
      padding: 0.75rem;
      font-weight: 700;
      border-right: 1px solid #ccc;
      display: flex;
      align-items: center;
      min-width: 50px;
      justify-content: center;
    }
    .phone-input {
      border: none;
      flex: 1;
      padding: 0.75rem;
      font-size: 1rem;
    }

    /* Address row styling */
    .address-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }
    .address-row-full {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem;
    }

    /* Input group for smaller fields */
    .input-group {
      display: flex;
      gap: 1rem;
    }
    .input-group .inquireform-group {
      flex: 1;
      margin-bottom: 0;
    }

    .inquireform-buttons {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2rem;
    }
    .inquireform-btn {
      background: var(--eco-green);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 2rem;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
    }
    .inquireform-btn:hover {
      background: var(--eco-accent);
    }

    .error-message {
      color: red;
      font-size: 0.9rem;
      display: none;
      margin-top: 0.3rem;
    }

    .success-screen {
      text-align: center;
      padding: 2rem;
    }
    .success-screen h2 {
      color: var(--eco-green);
    }

    /* Helper text */
    .helper-text {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-top: 0.3rem;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .address-row,
      .address-row-full {
        grid-template-columns: 1fr;
      }
      .input-group {
        flex-direction: column;
      }
      .input-group .inquireform-group {
        margin-bottom: 1.5rem;
      }
    }