 * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      background-color: #f9fafb;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
      color: #4b5563;
    }

   footer .container { 
      margin: 48px auto;
      padding: 0 24px;
      max-width: 100% !important;
    }
    .form-wrapper {
      display: flex;
      flex-wrap: wrap;
      background: white;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      border-radius: 8px;
      padding: 32px;
    }
    .left,
    .right {
      flex: 1 1 100%;
      min-width: 280px;
    }
    @media (min-width: 768px) {
      .left,
      .right {
        flex: 1 1 50%;
      }
      .left {
        border-right: 1px solid #e5e7eb;
        padding-right: 32px;
      }
      .right {
        padding-left: 32px;
      }
    }
    h1 {
      font-weight: 800;
      font-size: 2.25rem;
      margin-bottom: 40px;
      color: #111827;
    }
    /* h1 .line-through {
      text-decoration: line-through;
      color: #9ca3af;
    } */
    .schedule {
        margin: 40px 0;
    }
    .schedule-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-weight: 600;
      font-size: 1rem;
      color: #374151;
    }
    .schedule-row p:last-child {
      font-weight: 400;
      color: #6b7280;
    }
    /* .schedule-row p:last-child .line-through {
      color: #ef4444;
      text-decoration: line-through;
      margin: 0 4px;
    } */
    hr.dotted {
        border: none;
        border-top: 2px dotted #7d7e7f;
        margin-bottom: 12px;
    }
    .contact-info {
      font-size: 0.875rem;
      color: #6b7280;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .contact-item i {
      color: #9ca3af;
      font-size: 1rem;
      min-width: 20px;
      text-align: center;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .name-row {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .name-row input {
      flex: 1 1 45%;
      padding: 16px;
      font-size: 1rem;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      color: #374151;
    }
    .name-row input::placeholder {
      color: #9ca3af;
    }
    input[type="email"],
    textarea {
      width: 100%;
      padding: 16px;
      font-size: 1rem;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      color: #374151;
      resize: none;
    }
    input[type="email"]::placeholder,
    textarea::placeholder {
      color: #9ca3af;
    }
    textarea {
      min-height: 120px;
    }
    input:focus,
    textarea:focus {
      outline: none;
      border-color: #ef4444;
      box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.4);
    }
    button {
      max-width: 320px;
      width: 100%;
      padding: 16px 0;
      font-size: 1rem;
      font-weight: 600;
      color: #ef4444;
      background: transparent;
      border: 2px solid #ef4444;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
      align-self: flex-start;
    }
    button:hover,
    button:focus {
      background-color: #ef4444;
      color: white;
      outline: none;
    }