    :root {
      --primary-blue: #1d70b8;
      --primary-green: #00703c;
      --whatsapp-green: #25D366;
      --telegram-blue: #0088cc;
      --primary-black: #0b0c0c;
      --light-grey: #f3f2f1;
      --border-grey: #b1b4b6;
      --error-red: #d4351c;
    }

    * {
      box-sizing: border-box;
      font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    }

    body {
      margin: 0;
      background: #fff;
      color: var(--primary-black);
    }

    header {
      background: var(--primary-blue);
      color: #fff;
      padding: 0 20px;
      display: flex;
      align-items: center;
      font-size: 20px;
      font-weight: bold;
      height: 61px;
    }

    .header-inner {
      max-width: 960px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      font-size: 30px;
      font-weight: bold;
      color: #fff;
    }

    main {
      max-width: 960px;
      padding: 24px 20px 80px;
      margin: auto;
    }

    h1 {
      font-size: 32px;
      margin-bottom: 16px;
    }

    p {
      font-size: 18px;
      line-height: 1.5;
    }

    .button {
      display: inline-block;
      padding: 12px 28px;
      background: var(--primary-green);
      color: #fff;
      border: none;
      font-size: 22px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 20px;
      box-shadow: rgb(0, 45, 24) 0px 2px 0px;
      text-decoration: none;
      text-align: center;
      border-radius: 5px;
    }

    .button:hover {
      background: #005a30;
    }

    .button:disabled {
      background: #b1b4b6;
      cursor: not-allowed;
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    label {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
    }

    input[type="text"], select {
      width: 100%;
      max-width: 420px;
      padding: 10px;
      font-size: 18px;
      border: 2px solid var(--primary-black);
      margin-bottom: 10px;
      border-radius: 4px;
    }

    input.error {
      border-color: var(--error-red);
    }

    .radio-group {
      margin-top: 24px;
    }

    .radio-option {
      border-left: 5px solid transparent;
      padding: 12px;
      margin-bottom: 10px;
      cursor: pointer;
      border-radius: 4px;
    }

    .radio-option:hover {
      background: var(--light-grey);
    }

    .radio-option input {
      margin-right: 10px;
      transform: scale(1.4);
    }

    .radio-option.selected {
      border-left-color: var(--primary-green);
      background: var(--light-grey);
    }

    .error-message {
      color: var(--error-red);
      font-size: 16px;
      margin-top: 10px;
      display: none;
    }

    .error-message.show {
      display: block;
    }

    .required-field::after {
      content: " *";
      color: var(--error-red);
    }

    .toast {
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--primary-green);
      color: white;
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 1000;
      opacity: 0;
      transform: translateX(100px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(0);
    }

    .toast-icon {
      font-size: 24px;
    }

    .toast-content h3 {
      margin: 0 0 5px 0;
      font-size: 18px;
    }

    .toast-content p {
      margin: 0;
      font-size: 16px;
      opacity: 0.9;
    }

    .success-container {
      text-align: center;
      max-width: 500px;
      margin: 0 auto;
    }

    .manager-profile {
      margin: 30px 0;
      padding: 30px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .manager-photo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        color: white;
        overflow: hidden;
        border: 4px solid white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .manager-name {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--primary-black);
    }

    .manager-title {
      font-size: 18px;
      color: #666;
      margin-bottom: 25px;
    }

    .contact-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .whatsapp-button {
      background: var(--whatsapp-green);
      box-shadow: rgb(0, 100, 50) 0px 2px 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 20px;
    }

    .whatsapp-button:hover {
      background: #128C7E;
    }

    .telegram-button {
      background: var(--telegram-blue);
      box-shadow: rgb(0, 68, 102) 0px 2px 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 20px;
    }

    .telegram-button:hover {
      background: #0077B5;
    }

    .instruction-text {
      margin-top: 30px;
      padding: 25px;
      background: #fff;
      border-radius: 10px;
      font-size: 17px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .instruction-text p {
      margin-bottom: 15px;
    }

    .instruction-text strong {
      color: var(--primary-green);
    }

    .button-icon {
      font-size: 22px;
    }

    @media (max-width: 600px) {
      h1 { font-size: 26px; }
      p { font-size: 17px; }
      main {
        max-width: 480px;
        margin: 0 auto;
        padding: 20px 16px 60px;
      }
      .header-inner { padding: 0; }
      .manager-profile {
        padding: 25px 20px;
        margin: 20px 0;
      }
      .contact-buttons {
        margin-top: 15px;
      }
      .instruction-text {
        padding: 20px;
        margin-top: 25px;
      }
      .toast {
        left: 20px;
        right: 20px;
        top: 80px;
      }
    }
    .manager-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

  .nationality-select {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    font-size: 18px;
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    background-color: white;
    margin-bottom: 20px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
  }

  .nationality-select:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 0;
  }

  .nationality-select option {
    padding: 8px;
    font-size: 16px;
  }

  .select-error {
    border-color: var(--error-red);
  }
