    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f4f6f9;
      color: #222;
      min-height: 100vh;
    }

    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 30px;
      text-align: center;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .menu-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: 0.2s ease;
      border: 2px solid transparent;
    }

    .menu-card:hover {
      transform: translateY(-4px);
      border-color: #4f46e5;
    }

    .menu-card h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .menu-card p {
      color: #666;
      line-height: 1.5;
    }

    .hidden {
      display: none;
    }

    .form-wrapper {
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .form-title {
      font-size: 28px;
      margin-bottom: 25px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
    }

    input,
    select {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 15px;
    }

    .info-box {
      background: #eef2ff;
      border-left: 4px solid #4f46e5;
      padding: 15px;
      border-radius: 10px;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .button-row {
      display: flex;
      gap: 15px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    button {
      padding: 14px 24px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 15px;
      font-weight: bold;
      transition: 0.2s ease;
    }

    .primary-btn {
      background: #4f46e5;
      color: white;
    }

    .primary-btn:hover {
      background: #4338ca;
    }

    .secondary-btn {
      background: #e5e7eb;
      color: #222;
    }

    .secondary-btn:hover {
      background: #d1d5db;
    }

    .preview-box {
      margin-top: 35px;
      background: #f9fafb;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
    }

    .preview-box h3 {
      margin-bottom: 15px;
    }

    .preview-item {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    textarea {

      width: 100%;

      box-sizing: border-box;

      resize: none;

      height: 200px;

      overflow-y: auto;

      font-family: inherit;

      padding: 12px;

    }

    .section-divider {

      width: 100%;

      height: 1px;

      background-color: #dcdcdc;

      margin: 50px 0;

}

