<!-- EMBASSY TRANSLATIONS - CSS v5 for Jimdo Head -->
<!-- Add to: Settings > Head > Edit Head -->
<!-- FIXES: anchor scroll, h3 margins/case, CTA mobile width, table styling -->

<style type="text/css">
:root {
  --et-orange: #F26323;
  --et-orange-dark: #e55a20;
  --et-blue: #2D93D1;
  --et-blue-dark: #1a7bb8;
  --et-green: #00b67a;
  --et-text: #333;
  --et-text-light: #666;
  --et-bg: #f7f7f7;
  --et-border: #e0e0e0;
}

/* ===== GLOBAL OVERRIDES FOR JIMDO THEME ===== */
/* These use high specificity to override Jimdo's theme styles */

.j-module h2,
.j-module h3,
.j-module h4,
.j-static-page h2,
.j-static-page h3,
.j-static-page h4,
.content-options-inner h2,
.content-options-inner h3,
.content-options-inner h4,
.et-section h2,
.et-section h3,
.et-step h3,
.et-card h4,
.et-tip h4,
.et-explainer h4,
.et-final-cta h2 {
  text-transform: none !important;
  text-align: left !important;
}

/* H3 margins - needs high specificity */
.j-module .et-section h3,
.j-static-page .et-section h3,
.content-options-inner .et-section h3,
.et-section h3 {
  margin: 2em 0 1em !important;
  text-transform: none !important;
  color: var(--et-blue) !important;
  font-weight: 600 !important;
}

/* Anchor scroll offset - accounts for fixed header */
.et-section[id],
section[id].et-section {
  scroll-margin-top: 100px;
}

/* ===== BREADCRUMBS ===== */
.et-breadcrumb {
  color: var(--et-text-light);
  margin-bottom: 15px;
}
.et-breadcrumb a {
  color: var(--et-text-light);
  text-decoration: none;
}
.et-breadcrumb a:hover {
  color: var(--et-orange);
  text-decoration: underline;
}
.et-breadcrumb span { margin: 0 8px; }

/* ===== TOP BAR: Breadcrumb + Language Switcher ===== */
.et-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.et-lang {
  display: flex;
  gap: 8px;
}
.et-lang a {
  color: var(--et-text-light);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
}
.et-lang a:hover { background: var(--et-bg); }
.et-lang a.active {
  background: var(--et-bg);
  color: var(--et-text);
  font-weight: 600;
}

/* ===== HERO SECTION - Two Column ===== */
.et-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.et-hero-main {
  flex: 2;
  min-width: 300px;
}
.et-hero-side {
  flex: 1;
  min-width: 250px;
}
.et-hero h1 {
  color: var(--et-blue);
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-transform: none !important;
}
.et-hero-sub {
  line-height: 1.6;
  color: var(--et-text);
  margin-bottom: 20px;
}

/* ===== TRUST BAR - Vertical in Hero ===== */
.et-trust-bar { margin-bottom: 25px; }
.et-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.et-trust-item::before {
  content: '✓';
  color: var(--et-green);
  font-weight: bold;
}

/* ===== TABLE OF CONTENTS CARD ===== */
.et-toc {
  background: var(--et-bg);
  border-radius: 6px;
  padding: 40px;
  min-height: 80%;
  box-sizing: border-box;
}
.et-toc-title {
  font-weight: 600;
  color: var(--et-text);
  margin-bottom: 15px;
}
.et-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.et-toc li {
  padding: 20px 0;
  border-bottom: 1px solid var(--et-border);
}
.et-toc li:last-child { border-bottom: none; }
.et-toc a {
  color: var(--et-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.et-toc a::before {
  content: '→';
  color: var(--et-orange);
}
.et-toc a:hover { color: var(--et-orange); }

/* ===== CTA BUTTONS ===== */
.et-cta-wrap { margin: 25px 0; }
.et-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--et-orange) 0%, var(--et-orange-dark) 100%);
  color: #fff !important;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.et-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,99,35,0.3);
  color: #fff !important;
}
.et-cta-sub {
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--et-text-light);
}

/* ===== EXPLAINER BOX (English) ===== */
.et-explainer {
  background: linear-gradient(135deg, #e8f4fc 0%, var(--et-bg) 100%);
  border-left: 4px solid var(--et-blue);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 6px 6px 0;
}
.et-explainer h4 {
  margin: 0 0 10px 0 !important;
  color: var(--et-blue) !important;
  text-transform: none !important;
}
.et-explainer p { margin: 0; line-height: 1.5; }

/* ===== GERMAN TERMS ===== */
.et-de-term {
  background: #e8f4fc;
  padding: 2px 6px;
  border-radius: 3px;
  font-style: italic;
  color: var(--et-blue-dark);
}

/* ===== SECTION HEADINGS ===== */
.et-section {
  margin-top: 50px;
  margin-bottom: 25px;
}
.et-section h2 {
  color: var(--et-blue) !important;
  border-bottom: 2px solid var(--et-orange);
  padding-bottom: 10px;
  margin: 0 0 20px 0 !important;
  text-transform: none !important;
  text-align: left !important;
}

/* ===== PROCESS TIMELINE ===== */
.et-process {
  border-left: 3px solid var(--et-orange);
  padding-left: 26px;
  margin: 30px 0;
}
.et-step {
  position: relative;
  margin-bottom: 30px;
}
.et-step:last-child { margin-bottom: 0; }
.et-step-num {
  position: absolute;
  left: -38px;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--et-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.et-step h3 {
  margin: 0 0 5px 0 !important;
  color: var(--et-text) !important;
  text-transform: none !important;
}
.et-step p {
  margin: 0;
  color: var(--et-text-light);
  line-height: 1.5;
}

/* ===== CARDS GRID ===== */
.et-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.et-card {
  background: #fff;
  border: 1px solid var(--et-border);
  border-radius: 6px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.et-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.et-card h4 {
  margin: 0 0 12px 0 !important;
  color: var(--et-text) !important;
  text-transform: none !important;
  font-size: 1.25rem !important;
  text-align: left !important;
  font-weight: 600 !important;
}
.et-card h4 a {
  color: var(--et-text);
  text-decoration: none;
}
.et-card h4 a:hover { color: var(--et-orange); }
.et-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--et-text-light);
}
.et-card ul li { margin-bottom: 6px; }
.et-card ul a {
  color: var(--et-text-light);
  text-decoration: none;
}
.et-card ul a:hover { color: var(--et-orange); }
.et-card p {
  margin: 0;
  color: var(--et-text-light);
}

/* ===== TIP BOX ===== */
.et-tip {
  background: linear-gradient(135deg, #e8f4fc 0%, var(--et-bg) 100%);
  border-left: 4px solid var(--et-blue);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 6px 6px 0;
}
.et-tip h4 {
  margin: 0 0 10px 0 !important;
  color: var(--et-blue) !important;
  text-transform: none !important;
}
.et-tip p { margin: 0; line-height: 1.5; }

/* ===== REQUIREMENTS LIST ===== */
.et-req-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.et-req-list li {
  padding: 8px 0 8px 28px;
  position: relative;
}
.et-req-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--et-green);
  font-weight: bold;
}

/* ===== TABLES ===== */
.et-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: #fff;
  border: 1px solid var(--et-border);
  border-radius: 6px;
  overflow: hidden;
}
.et-table thead {
  background: var(--et-bg);
}
.et-table th,
.et-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--et-border);
}
.et-table th {
  font-weight: 600;
  color: var(--et-text);
}
.et-table td {
  color: var(--et-text-light);
}
.et-table tbody tr:last-child td {
  border-bottom: none;
}
.et-table tbody tr:hover {
  background: var(--et-bg);
}

/* ===== FAQ - Always Open (SEO-friendly, no JS) ===== */
.et-faq { margin: 25px 0; }
.et-faq-item {
  border: 1px solid var(--et-border);
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}
.et-faq-q {
  padding: 15px;
  background: var(--et-bg);
  font-weight: 600;
}
.et-faq-a {
  padding: 15px;
  border-top: 1px solid var(--et-border);
  line-height: 1.6;
}
.et-faq-a p { margin: 0; }
.et-faq-link { margin-top: 15px; }
.et-faq-link a {
  color: var(--et-blue);
  text-decoration: none;
}
.et-faq-link a:hover { text-decoration: underline; }

/* ===== META BLOCK: Author + Reviews + Contact ===== */
.et-meta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  padding: 20px 25px;
  background: var(--et-bg);
  border-radius: 6px;
  margin: 30px 0;
}
.et-author {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 220px;
}
.et-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.et-author-label {
  color: var(--et-text-light);
  margin-bottom: 2px;
}
.et-author-name { font-weight: 600; color: var(--et-text); }
.et-author-meta { color: var(--et-text-light); }
.et-author-meta a { color: var(--et-blue); text-decoration: none; }
.et-author-meta a:hover { text-decoration: underline; }
.et-reviews {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 200px;
  padding-left: 20px;
  border-left: 1px solid var(--et-border);
}
.et-rating {
  background: var(--et-green);
  color: #fff;
  padding: 10px 12px;
  border-radius: 5px;
  font-weight: bold;
}
.et-reviews-text { color: var(--et-text-light); }
.et-reviews-text a { color: var(--et-blue); text-decoration: none; }
.et-reviews-text a:hover { text-decoration: underline; }
.et-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 200px;
  padding-left: 20px;
  border-left: 1px solid var(--et-border);
}
.et-contact-icon {
  color: var(--et-blue);
  font-size: 2.5rem;
}
.et-contact-info a {
  color: var(--et-blue);
  text-decoration: none;
}
.et-contact-info a:hover { text-decoration: underline; }

/* ===== FINAL CTA ===== */
.et-final-cta {
  background: linear-gradient(135deg, var(--et-blue) 0%, var(--et-blue-dark) 100%);
  color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}
.et-final-cta h2 {
  color: #fff !important;
  font-weight: bold;
  margin: 0 0 10px 0 !important;
  border: none !important;
  padding: 0 !important;
  text-transform: none !important;
  text-align: center !important;
}
.et-final-cta p {
  margin: 0 0 25px 0;
  opacity: 0.95;
}
.et-final-cta .et-cta {
  background: #fff;
  color: var(--et-blue) !important;
}
.et-final-cta .et-cta:hover { background: var(--et-bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .et-top-bar { flex-direction: column; align-items: flex-start; }
  .et-hero { flex-direction: column; }
  .et-toc { padding: 20px; min-height: auto; }
  .et-toc li { padding: 12px 0; }
  .et-trust-bar { display: flex; flex-wrap: wrap; gap: 5px 20px; }
  
  /* CTA: auto width, max-width instead of 100% */
  .et-cta { 
    width: auto;
    max-width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  .et-cta-wrap { text-align: center; }
  
  .et-final-cta { padding: 30px 20px; }
  .et-final-cta .et-cta { 
    width: auto;
    max-width: 100%;
  }
  
  .et-meta-block { flex-direction: column; align-items: flex-start; }
  .et-reviews { border-left: none; padding-left: 0; padding-top: 15px; border-top: 1px solid var(--et-border); }
  .et-contact { border-left: none; padding-left: 0; padding-top: 15px; border-top: 1px solid var(--et-border); }
  
  /* Table responsive */
  .et-table {
    display: block;
    overflow-x: auto;
  }
  .et-table th,
  .et-table td {
    padding: 10px 12px;
    white-space: nowrap;
  }
  
  /* Anchor offset for mobile (usually no fixed header) */
  .et-section[id],
  section[id].et-section {
    scroll-margin-top: 20px;
  }
}
</style>