.ef-form-container {
      width: 100%;
      max-width: 1000px;
      min-height: 650px;
      margin: 60px auto;
      background: #FFFFFF;
      border-radius: 20px;
      padding: 60px 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #10367A;
    }

    .ef-form-intro {
      text-align: center;
      margin-bottom: 20px;
    }

    .ef-form-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: #D3D3D3;
      margin-bottom: 10px;
    }

    .ef-form-subtag {
      display: inline-block;
      background-color: rgba(254, 87, 22, 0.1);
      color: #FE5716;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.95rem;
    }


    .ef-form-progress {
      width: 100%;
      height: 8px;
      background-color: #D3D3D3;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .ef-form-bar-fill {
      height: 100%;
      background-color: #FE5716;
      width: 0%;
      transition: width 0.3s ease-in-out;
    }

    h2 {
      text-align: center;
      font-size: 1.8rem;
      color: #D3D3D3;
      margin-bottom: 30px;
    }

    .ef-form-step {
      display: none;
      animation: fadeIn 0.3s ease-in-out;
    }

    .ef-form-step.active {
      display: block;
    }

    .ef-form-choice-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .ef-form-card {
      background: #D3D3D3;
      border: 2px solid transparent;
      border-radius: 12px;
      width: 180px;
      padding: 25px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .ef-form-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .ef-form-card input {
      display: none;
    }

    .ef-form-card i {
      font-size: 2.5rem;
      margin-bottom: 12px;
      color: #FE5716;
    }

    .ef-form-card span {
      font-size: 1.1rem;
      font-weight: 600;
      color: #000000;
    }

    .ef-form-card input:checked~i,
    .ef-form-card input:checked~span {
      color: #10367A;
      font-weight: bold;
    }

    input[type="text"],
    input[type="number"],
    input[type="tel"] {
      width: 100%;
      padding: 15px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 10px;
      margin-bottom: 25px;
      box-sizing: border-box;
      color: #000000;
      background-color: #FFFFFF;
    }

    .ef-form-nav {
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    button {
      padding: 14px 28px;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    .ef-form-next,
    .ef-form-submit {
      background-color: #FE5716;
      color: #FFFFFF;
    }

    .ef-form-prev {
      background-color: #D3D3D3;
      color: #000000;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }