  * {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6; color: #333; background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  body.rtl {
    direction: rtl; font-family: 'Arial', 'Tahoma', sans-serif;
  }
  .language-toggle {
    position: fixed; top: 20px; right: 20px; z-index: 1000;
    background: white; border: 2px solid #e74c3c; border-radius: 25px;
    padding: 0.5rem 1rem; cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .language-toggle:hover {
    background: #e74c3c; color: white;
  }
  .rtl .language-toggle {
    right: auto; left: 20px;
  }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* header */
  header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white; padding: 2rem 0; text-align: center;
  }
  .logo {
    display: inline-block; background: white;
    padding: 1rem 2rem; border-radius: 10px; margin-bottom: 1rem;
  }
  .logo-icon {
    width: 60px; height: 60px; background: #d35400;
    border-radius: 8px; display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 0.5rem;
  }
  .logo-icon::before {
    content: "✈"; color: white; font-size: 24px;
  }
  .logo-text { color: #d35400; font-weight: bold; font-size: 1.2rem; }
  .logo-subtext { color: #666; font-size: 0.9rem; }
  h1 { font-size: 2.5rem; margin-bottom: 0.5rem; font-weight: 300; }
  .subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }

  /* hero */
  .hero-section {
    background: white; padding: 4rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
  .hero-content h2 { font-size: 2.2rem; color: #2c3e50; margin-bottom: 1.5rem; }
  .hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; line-height: 1.8; }
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white; padding: 1rem 2rem; text-decoration: none;
    border-radius: 50px; font-weight: bold; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
  }
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
  }

  /* images */
  .images-section { padding: 4rem 0; background: #f8f9fa; }
  .images-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 2rem; margin-top: 2rem;
  }
  .image-card {
    background: white; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .image-card:hover { transform: translateY(-5px); }
  .image-card img {
    width: 100%; height: 200px; object-fit: cover;
  }
  .image-card-content { padding: 1.5rem; text-align: center; }
  .image-card h3 { color: #2c3e50; margin-bottom: 0.5rem; }

  /* form */
  .form-section {
    background: white; padding: 4rem 0; margin: 2rem 0;
    border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .form-container { max-width: 600px; margin: 0 auto; }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block; margin-bottom: 0.5rem;
    font-weight: bold; color: #2c3e50;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 0.8rem; border: 2px solid #ddd;
    border-radius: 8px; font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none; border-color: #e74c3c;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    .hero-content h2 { font-size: 1.8rem; }
  }
  .checkbox-group {
    display: flex; align-items: center; margin-bottom: 1rem;
  }
  .checkbox-group input { margin-right: 0.5rem; }
  .submit-button {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white; padding: 1rem 2rem; border: none;
    border-radius: 50px; font-size: 1.1rem; font-weight: bold;
    cursor: pointer; width: 100%; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
  }
  .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
  }
  .section-title { text-align: center; font-size: 2rem; color: #2c3e50; margin-bottom: 1rem; }
  .section-subtitle { text-align: center; color: #666; margin-bottom: 2rem; }
  /* In RTL mode, keep each pill inline-flex (so it wraps to content width) */
  body.rtl .choices__list--multiple .choices__item {
    display: inline-flex !important;   /* was flex → now inline-flex */
    flex-direction: row-reverse !important;
    align-items: center;
    width: auto !important;            /* override any 100% width */
  }

  /* And keep the × button up front with the divider on its right */
  body.rtl .choices__list--multiple .choices__item .choices__button {
    border-left: none !important;
    border-right: 1px solid rgba(0,0,0,0.1) !important;
    margin-right: 0.5em !important;
    margin-left: 0 !important;
    padding-left: 0.5em !important;
    padding-right: 0.3em !important;
    direction: ltr;
  }
  /* Children entries: three columns (Name, Age, ID) */
.child-entry {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr; /* adjust ratios as needed */
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  /* Make inputs/selects fill their column */
  .child-entry input,
  .child-entry select {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  
  /* Style the add-child “+” button */
  .form-group > button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .form-group > button:hover {
    background-color: #cf6b1d;
  }
  