*, *::before, *::after { box-sizing: border-box; } body { margin: 0; font-family: sans-serif; background: #fff; } header { display: flex; justify-content: flex-end; padding: 10px 20px; } .language-selector select { font-size: 16px; padding: 5px 10px; } .headline { text-align: center; font-size: clamp(1.125rem, 4vw, 3rem); /* 18px - 48px */ margin: 30px auto 10px auto; max-width: 800px; word-wrap: break-word; padding: 0 20px; } .layout { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 20px; padding: 20px; } .side { flex: 1 1 30%; max-width: 33%; min-width: 150px; display: flex; align-items: center; justify-content: center; } .side img { width: 100%; height: auto; max-width: 100%; object-fit: contain; transition: transform 0.3s ease; } .side img:hover { transform: scale(1.05); } .center { flex: 1 1 30%; max-width: 33%; min-width: 250px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .buttons-container { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 250px; } .btn { padding: 12px 32px; font-size: 1rem; background-color: #007BFF; border: none; border-radius: 8px; color: white; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; box-shadow: 0 4px 8px rgba(0,0,0,0.1); } .btn:hover { background-color: #0056b3; transform: translateY(-2px); } /* Mobile */ @media (max-width: 768px) { .layout { flex-direction: column; } .side, .center { max-width: 100%; } .side img { width: 80%; max-height: 30vh; } .headline { font-size: clamp(1rem, 6vw, 2rem); } .language-selector select { font-size: 16px; padding: 5px 10px; border-radius: 6px; background-color: #f9f9f9; border: 1px solid #ccc; appearance: none; } } .footer { text-align: center; font-size: 0.9rem; color: #777; padding: 20px; } .form-container { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 400px; z-index: 2; } .form-container input, .form-container select { padding: 12px; border-radius: 8px; border: none; font-size: 1rem; } .checkbox-label { font-size: 0.95rem; color: #444; display: flex; align-items: center; gap: 0.5rem; } @media (max-width: 768px) { } .content-wrapper { display: flex; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; padding: 40px 20px; box-sizing: border-box; } .svg-image { flex: 1 1 50%; max-width: 45%; box-sizing: border-box; padding: 10px; overflow: hidden; } .svg-image svg { width: 100%; height: auto; display: block; } @media (max-width: 768px) { .content-wrapper { flex-direction: column; align-items: center; } .svg-image { max-width: 90%; } } .svg-image-container { width: 100%; max-width: 600px; aspect-ratio: 16 / 9; overflow: hidden; margin: 20px auto; } .svg-image-container svg { width: 100%; height: auto; display: block; } /* responsive inline SVGs */ .side svg, svg.responsive { width:100% !important; height:auto !important; max-width:100%; display:block; }

/* --- Button normalization + alignment fix --- */
button.btn, .btn, a.btn, input[type="submit"].btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.btn:link, .btn:visited, .btn:hover, .btn:active, .btn:focus {
  text-decoration: none !important;
}
button.btn span, a.btn span { display: inline-block; }

.language-selector select#languageSelect{padding:8px 10px;border-radius:10px;border:1px solid rgba(0,0,0,.1);background:#fff}

/* lang selector fixed */
.language-selector{position:fixed;top:12px;right:12px;z-index:9999}
.language-selector select#languageSelect{padding:8px 10px;border-radius:10px;border:1px solid rgba(0,0,0,.1);background:#fff}


/* Hero title */
.hero-title{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:.35em;
  margin: clamp(16px, 4vw, 40px) auto;
  line-height:1.15;
}
.hero-title span{
  font-weight:700;
  font-size: clamp(20px, 3.2vw, 40px);
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #1e2a78 0%, #1b74d1 40%, #1fb9ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity:0;
  transform: translateY(12px);
  animation: heroFadeUp .8s ease forwards;
}
.hero-title span:nth-child(2){ animation-delay:.15s }
.hero-title span:nth-child(3){ animation-delay:.3s }

@keyframes heroFadeUp{
  to{ opacity:1; transform: translateY(0) }
}

/* === register header language selector (match landing) === */
.language-selector{ position:fixed; top:10px; right:10px; z-index:1000; }
.language-selector select{
  background:#ffffff; color:#0b1220;
  border:1px solid #cfd7e3; border-radius:12px;
  padding:8px 10px; outline:0; appearance:auto;
}
.language-selector select:focus{ border-color:#9bb3e0; box-shadow:0 0 0 3px rgba(43,108,217,0.15); }
@media (max-width:640px){
  .language-selector{ top:8px; right:8px; }
  .language-selector select{ padding:8px; font-size:14px; }
}

/* compact row for country + language */
.form-group{ margin:0 0 14px; }
.form-row{ display:flex; flex-wrap:wrap; gap:12px; }
.form-row>.form-group{ flex:1 1 280px; }
input, select{ margin:0; }
@media (max-width:640px){ .form-row{ gap:10px; } }
