/* ---- Modern Gradient Style CSS for UmzugLeichtgemacht ---- */
/* CSS RESET & NORMALIZE ----------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F6;
  color: #172137;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: #153E7E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA900;
}

ul, ol {
  margin-left: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #153E7E;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; margin-top: 24px; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; }

p {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: #172137;
}
strong { font-weight: 700; }

/* GENERAL LAYOUT ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(21,62,126,0.04);
}

/* Header --------------------------------------------------------------------- */
header {
  background: linear-gradient(90deg, #153E7E 0%, #5476B4 60%, #FFA900 100%);
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(21,62,126,0.12);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  position: relative;
  gap: 16px;
}
header a img {
  height: 42px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 2px;
  width: 0%;
  background: #FFA900;
  transition: width 0.3s;
  margin-top: 5px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 70%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFA900;
}

.cta-primary {
  background: linear-gradient(90deg, #153E7E 60%, #FFA900 120%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(21,62,126,0.08);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.2s, transform 0.18s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFA900 0%, #153E7E 100%);
  box-shadow: 0 6px 36px rgba(21,62,126,0.10);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

.cta-secondary {
  color: #153E7E;
  background: #FFA900;
  border-radius: 28px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
  margin-top: 12px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #153E7E;
  color: #fff;
}

/* MOBILE MENU ---------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFA900;
  font-size: 2rem;
  cursor: pointer;
  z-index: 120;
  margin-left: 8px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFA900;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 330px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 20px rgba(21,62,126,0.18);
  z-index: 299;
  padding: 36px 20px 20px 32px;
  gap: 36px;
  transition: transform 0.35s cubic-bezier(.73,.06,.44,1.29), right 0.35s;
  transform: translateX(100%);
}
.mobile-menu.active {
  right: 0;
  transform: translateX(0);
  box-shadow: -2px 0 24px rgba(21,62,126,0.20);
}
.mobile-menu-close {
  font-size: 1.8rem;
  border: none;
  background: transparent;
  color: #153E7E;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  transition: color 0.2s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFA900;
  background: #f2f2f2;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #153E7E;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0 10px 0;
  transition: color 0.17s, background 0.15s;
  border-radius: 7px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F6F6;
  color: #FFA900;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO ----------------------------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #E7ECFA 60%, #FFA90018 100%);
  padding: 48px 0 32px 0;
  width: 100%;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  gap: 20px;
  padding: 0 0 10px 0;
}
.hero h1 {
  font-size: 2.3rem;
  color: #153E7E;
}
.hero p {
  font-size: 1.125rem;
  color: #30497B;
}

/* FEATURES & CARDS ----------------------------------------------------------- */
.features, .services, .team, .cta, .confirmation, .about, .tips, .pricing, .legal, .guides, .locations, .contact, .callout, .faq, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 24px rgba(21,62,126,0.06);
}
.features .content-wrapper, .services .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 300px;
  padding: 28px 24px 20px 24px;
  background: linear-gradient(110deg, #F6F6F6 70%, #E7ECFA 100%);
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(21,62,126,0.07);
  gap: 15px;
  transition: box-shadow 0.24s, transform 0.22s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item h3 {
  font-size: 1.15rem;
  color: #153E7E;
}
.feature-item p {
  font-size: 1rem;
  color: #3E4868;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 36px rgba(21,62,126,0.14);
  transform: translateY(-2px) scale(1.025);
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.usp-list ul {
  flex: 1;
  min-width: 240px;
  margin-bottom: 0;
}
.certifications {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.certifications img {
  height: 22px;
  margin-left: 7px;
  vertical-align: middle;
}

.team-bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: #F6F6F6;
  border-radius: 14px;
  padding: 22px 20px 16px 20px;
  min-width: 210px;
  max-width: 270px;
  box-shadow: 0 1.5px 12px rgba(21,62,126,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.team-member h3 {
  margin-bottom: 6px;
}

/* TESTIMONIALS --------------------------------------------------------------- */
.testimonials {
  background: #F6F6F6;
  border-radius: 22px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(21,62,126,0.08);
  padding: 24px 24px 18px 24px;
  gap: 14px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
  border-left: 5px solid #153E7E;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #19284a;
  margin-bottom: 6px;
}
.testimonial-meta {
  color: #153E7E;
  font-size: 1rem;
  font-weight: 600;
}
.stars {
  color: #FFA900;
  font-size: 1.3rem;
}

/* CTA + Confirmation --------------------------------------------------------- */
.cta {
  background: linear-gradient(110deg, #F6F6F6 50%, #E7ECFA 100%);
  text-align: left;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(21,62,126,0.07);
}
.cta-text {
  font-size: 1.13rem;
  color: #1C2746;
  margin-bottom: 22px;
  margin-top: 8px;
}
.confirmation h1 {
  font-size: 2rem;
  color: #153E7E;
}
.next-steps-info {
  color: #30497B;
  font-size: 1.1rem;
}

/* FAQ + Service List --------------------------------------------------------- */
.faq-list, .service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.faq-list li, .service-list li {
  font-size: 1.08rem;
  color: #27355B;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 8px rgba(21,62,126,0.05);
}
.faq-list li strong, .service-list li strong {
  color: #153E7E;
}
.service-list li img {
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Custom/Other Grids or Flex Containers -------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(21,62,126,0.08);
  padding: 20px 16px;
  transition: box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px rgba(21,62,126,0.14);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* For testimonials and reviews contrast  */
.testimonial-card, .testimonial-slider, .faq-list, .service-list {
  color: #172137;
  background: #fff;
}

/* PRICING TABLES ------------------------------------------------------------- */
.pricing-table, .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}
.pricing-table th, .pricing-table td, .price-table th, .price-table td {
  border: 0;
  padding: 14px 18px;
  font-size: 1.07rem;
}
.pricing-table thead, .price-table thead {
  background: #153E7E;
  color: #fff;
}
.pricing-table tbody tr:nth-child(even), .price-table tbody tr:nth-child(even) {
  background: #F6F6F6;
}
.pricing-table td, .price-table td {
  color: #203663;
}

.comparison-chart ul, .bundle-deals ul {
  margin-top: 8px;
  margin-bottom: 10px;
  margin-left: 20px;
}
.package-descriptions p, .bundle-deals ul li {
  color: #172137;
}
.price-calculator {
  background: #E7ECFA;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 1.11rem;
  color: #172137;
  margin-bottom: 22px;
  box-shadow: 0 1px 10px rgba(21,62,126,0.05);
}

/* TIPS & GUIDES -------------------------------------------------------------- */
.tips .tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.tip-card {
  background: #F6F6F6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,62,126,0.04);
  padding: 18px 15px 12px 18px;
  min-width: 180px;
  max-width: 280px;
}
.common-mistakes ul {
  margin-left: 20px;
}
.expert-advice {
  background: #E7ECFA;
  border-radius: 10px;
  padding: 13px 17px;
  margin-top: 13px;
  font-size: 1.09rem;
  color: #30497B;
  box-shadow: 0 1px 6px rgba(21,62,126,0.035);
}

/* CONTACT & LOCATIONS -------------------------------------------------------- */
.address-block {
  background: #F6F6F6;
  border-radius: 9px;
  padding: 15px 20px;
  box-shadow: 0 1px 8px rgba(21,62,126,0.06);
}
.address-block a {
  display: inline-block;
  margin-top: 6px;
  color: #153E7E;
  font-weight: 500;
  text-decoration: underline;
}
.contact-details ul {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}
.contact-details li {
  margin-bottom: 10px;
  list-style: none;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #203663;
  gap: 8px;
}
.contact-details li img {
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
}
.opening-hours {
  margin-top: 10px;
}

/* FOOTER --------------------------------------------------------------------- */
footer {
  background: #153E7E;
  color: #fff;
  padding: 38px 0 22px 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -3px 20px rgba(21,62,126,0.09);
  margin-top: 60px;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.footer-links a {
  color: #fff;
  opacity: 0.87;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.20s, opacity 0.16s;
  font-size: 1rem;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FFA900;
  opacity: 1;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.84;
}
.footer-legal a { color: #fff; text-decoration: underline;}

/* COOKIE CONSENT BANNER ------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 400;
  background: #153E7E;
  color: #fff;
  padding: 18px 16px 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  box-shadow: 0px -2px 24px rgba(21,62,126,0.15);
  animation: cookieSlideIn 0.65s cubic-bezier(.57,.82,.52,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 3 1 240px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: #FFA900;
  color: #153E7E;
  border: none;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0px 1px 7px rgba(21,62,126,0.08);
  margin-right: 4px;
  transition: background 0.16s, color 0.14s, box-shadow 0.15s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #153E7E;
  color: #FFA900;
  outline: 2px solid #FFA900;
}
.cookie-btn.reject {
  background: #fff;
  color: #153E7E;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #FFA900;
  color: #fff;
}
.cookie-btn.settings {
  background: #f6f6f6;
  color: #153E7E;
  border: 1px solid #ccc;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #FFE3A0;
  color: #153E7E;
}

/* COOKIE MODAL --------------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,62,126, 0.22);
  z-index: 450;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn 0.4s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #153E7E;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(21,62,126,0.13);
  padding: 28px 32px;
  min-width: 320px;
  max-width: 98vw;
}
.cookie-modal h2 {
  font-size: 1.3rem;
}
.cookie-modal .cookie-category-list {
  margin: 18px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
}
.cookie-modal .cookie-category .toggle {
  width: 34px;
  height: 20px;
  border-radius: 20px;
  background: #E7ECFA;
  border: 1px solid #ccc;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-category .toggle.on {
  background: #FFA900;
}
.cookie-modal .cookie-category .toggle .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.14s;
}
.cookie-modal .cookie-category .toggle.on .dot {
  left: 16px;
  background: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}

/* ACCESSIBILITY -------------------------------------------------------------- */
:focus {
  outline: 2px solid #FFA900;
  outline-offset: 2px;
}

/* RESPONSIVE (Mobile-First) -------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
  }
  .footer-legal {
    flex-direction: column;
    gap: 7px 0;
  }
}
@media (max-width: 768px) {
  .hero, .section, .features, .services, .team, .cta, .confirmation, .about, .tips, .pricing, .legal, .guides, .locations, .contact, .callout, .faq, .testimonials {
    padding: 24px 5px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .hero .content-wrapper {
    padding: 0 0 6px 0;
    max-width: 100%;
  }
  .feature-grid, .team-bio-list, .tip-cards, .content-grid, .card-container, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item, .team-member, .tip-card, .testimonial-card, .card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100%;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .footer-links, .footer-legal {
    flex-direction: column;
    gap: 7px 0;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 20px;
    padding: 0;
  }
  .text-image-section, .usp-list {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 5px 20px 10px;
  }
  .cookie-banner .cookie-btn-group {
    width: 100%;
    gap: 8px;
  }
  .cookie-modal {
    padding: 22px 10px;
    min-width: 0;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .hero { padding-top: 20px; }
  .content-wrapper { gap: 14px; }
  .footer-legal, .footer-links { font-size: 0.94rem; }
}

/* UTIL CLASSES --------------------------------------------------------------- */
.text-section {
  margin-bottom: 20px;
}
.mission-values ul, .common-mistakes ul {
  margin-left: 20px;
  margin-top: 7px;
  margin-bottom: 7px;
}
.mission-values h3 { margin-top: 14px; }

::-webkit-input-placeholder { color: #9BA7BF; }
::-moz-placeholder { color: #9BA7BF; }
:-ms-input-placeholder { color: #9BA7BF; }
::placeholder { color: #9BA7BF; }

/* Hide unwanted elements by default */
.mobile-menu { display: none; }


/* END OF CSS */
