    /* Sol Taraf - Bilgi Bloğu */
    .demoRandevu-form {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: var(--secondary);
      padding: 3vw 0;
    }

    .demoRandevu-form .container {
      display: flex;
      flex-wrap: wrap;
    }

    .demo-info-block {
      flex: 1;
      width: 100%;
      position: relative;
      padding-right: 3vw;
    }

    .demo-info-block h2 {
      color: var(--primary);
      font-family: 'Camera Obscura', cursive;
      font-size: 2rem;
      margin-bottom: 1.5vw;
      text-align: left;
    }

    .demo-benefits {
      list-style: none;
      padding: 0;
      margin: 0 0 2vw 0;
    }

    .demo-benefits li {
      display: flex;
      align-items: center;
      padding: 1vw;
      transition: all 0.3s ease;
      border-bottom: 0.1vw solid var(--primary);
    }

    .demo-benefits li:hover {
      transform: translateX(5px);
    }

    .demo-benefits img {
      margin-right: 1vw;
      min-width: 24px;
    }

    .demo-benefits span {
      color: var(--text-dark);
    }

    .demo-highlight {
      background: var(--primary);
      color: var(--text-light);
      padding: 1.5vw;
      border-radius: 15px;
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 1vw;
    }

    .demo-highlight img {
      filter: brightness(0) invert(1);
    }

    .demo-highlight p {
      margin: 0;
      font-weight: 500;
    }

    .demo-highlight strong {
      font-weight: 700;
    }


    /* Sağ Taraf - Demo Bloğu */
    .form-container {
      flex: 1;
      background-color: #fff;
      border-radius: 20px;
      border: 1px solid #6c63ff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      padding: 3vw;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 10px;
    }

    .form-group {
      flex: 1;
    }

    .form-group h2 {
      text-align: center;
      color: #6c63ff;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #3498db;
      border-radius: 15px;
      box-sizing: border-box;
      transition: all 0.3s;
      background-color: #fff;
      font-family: 'Montserrat', Arial, sans-serif;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: #2980b9;
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }

    input::placeholder,
    select:invalid,
    textarea::placeholder {
      color: #7f8c8d;
    }

    select:invalid {
      color: #7f8c8d;
    }

    select option {
      color: #000;
      border-radius: 15px;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
      border-radius: 20px !important;
    }

    button {
      padding: 14px;
      background-color: #6c63ff;
      color: #fff;
      border: none;
      border-radius: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      margin-top: 10px;
      width: 100%;
    }

    button:hover {
      background-color: #3831b8;
    }

    .error {
      color: #e74c3c;
      margin-top: 6px;
      display: none;
      text-align: left;
      padding-left: 15px;
    }

    .phone-group {
      position: relative;
    }

    .phone-prefix {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      padding: 0 15px;
      color: #7f8c8d;
      pointer-events: none;
    }

    .phone-prefix img {
      width: 24px;
      height: 16px;
      margin-right: 5px;
    }

    #phone {
      padding-left: 80px;
    }

    .whatsapp-check {
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .whatsapp-check input {
      width: auto;
      margin-right: 10px;
    }

    .time-options {
      display: none;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      max-height: 200px;
      overflow-y: auto;
      padding: 10px;
      background-color: #fff;
      border: 1px solid #3498db;
      border-radius: 15px;
    }

    .time-options-title {
      grid-column: 1 / -1;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 5px;
    }

    .time-option {
      display: flex;
      align-items: center;
    }

    .time-option input {
      width: auto;
      margin-right: 8px;
    }

    .sub-options {
      padding: 10px;
      background-color: #fff;
      border: 1px solid #3498db;
      border-radius: 15px;
      display: none;
    }

    .sub-option-group {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .sub-option-group label {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .sub-option-group input {
      width: auto;
      margin-right: 8px;
    }

    .custom-dropdown {
      position: relative;
      width: 100%;
    }

    .dropdown-header {
      padding: 12px 15px;
      border: 1px solid #3498db;
      border-radius: 15px;
      background-color: white;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #7f8c8d;
    }

    .dropdown-header:after {
      content: "▼";
      transition: transform 0.3s;
    }

    .dropdown-header.open:after {
      transform: rotate(180deg);
    }

    .dropdown-options {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-radius: 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      z-index: 100;
      border: 1px solid transparent;
    }

    .dropdown-options.open {
      max-height: 300px;
      border-color: #3498db;
    }

    .dropdown-option {
      padding: 12px 15px;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .dropdown-option:hover {
      background-color: #e1f0ff;
    }

    .custom-date-picker {
      position: relative;
    }

    .date-input {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #3498db;
      border-radius: 15px;
      box-sizing: border-box;
      background-color: white;
      cursor: pointer;
    }

    .date-picker {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      border: 1px solid #3498db;
      border-radius: 15px;
      padding: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      z-index: 100;
      display: none;
    }

    .date-picker.open {
      display: block;
    }

    .date-picker-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .date-picker-title {
      font-weight: bold;
      color: #2c3e50;
    }

    .date-picker-nav {
      display: flex;
      gap: 10px;
    }

    .date-picker-nav button {
      background: none;
      border: none;
      cursor: pointer;
      width: auto;
      padding: 0;
      color: #3498db;
      margin: 0;
    }

    .date-picker-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
    }

    .day-header {
      text-align: center;
      font-weight: bold;
      padding: 5px;
      color: #3498db;
    }

    .day {
      text-align: center;
      padding: 8px;
      cursor: pointer;
      border-radius: 10px;
      transition: all 0.2s;
    }

    .day:hover {
      background-color: #e1f0ff;
    }

    .day.disabled {
      color: #bdc3c7;
      cursor: not-allowed;
    }

    .day.selected {
      background-color: #3498db;
      color: white;
    }

    .day.today {
      font-weight: bold;
      color: #e74c3c;
    }

    .day.today.selected {
      color: white;
    }

    .confirmation-message {
      text-align: left;
      line-height: 1.6;
      padding: 20px;
    }

    .char-counter {
      text-align: right;
      font-size: 12px;
      color: #7f8c8d;
      margin-top: 5px;
    }

    /* Responsive Düzenlemeler */
@media (max-width: 1024px) {
  .demoRandevu-form .container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .demo-info-block {
    padding-right: 0;
    margin-bottom: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .time-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .demoRandevu-form {
    padding: 2rem 0;
  }
  
  .demo-info-block h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .demo-benefits li {
    padding: 0.6rem 0;
  }
  
  .form-container {
    border-radius: 15px;
  }
  
  .time-options {
    grid-template-columns: 1fr;
  }
  
  .dropdown-options {
    position: relative;
  }
  
  .date-picker {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .demoRandevu-form {
    padding: 1.5rem 0;
  }
  
  .demo-info-block h2 {
    font-size: 1.5rem;
  }
  
  .form-container {
    padding: 1rem;
    border-radius: 10px;
  }
  
  input,
  select,
  textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
  }
  
  button {
    padding: 0.8rem;
    border-radius: 10px;
  }
  
  .demo-highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .phone-prefix {
    padding: 0 0.5rem;
  }
  
  #phone {
    padding-left: 60px;
  }
}

/* Özel Küçük Ekranlar için */
@media (max-width: 360px) {
  .demo-benefits img {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  
  .demo-highlight img {
    width: 20px;
    height: 20px;
  }
  
  .form-group h2 {
    font-size: 1.3rem;
  }
}