/* --- 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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F6F8FC;
  color: #1A1C20;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s cubic-bezier(.68,-0.55,.27,1.55);
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:root {
  --brand-primary: #223A5E;
  --brand-secondary: #79B473;
  --brand-accent: #F6F8FC;
  --brand-electric-pink: #FB266C;
  --brand-orange: #FFA800;
  --brand-yellow: #FFE74C;
  --brand-turquoise: #27E1C1;
  --brand-blue: #1898FD;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY & BODY --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--brand-accent);
  color: #20222A;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
p, ul li, ol li, blockquote {
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
}
section {
  padding: 40px 20px;
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  background: #fff;
  color: var(--brand-primary);
  border-left: 5px solid var(--brand-electric-pink);
  padding: 20px 30px;
  border-radius: 16px 4px 16px 4px;
  margin: 12px 0 8px 0;
  box-shadow: 0 4px 20px 0 rgba(251,38,108, 0.07);
}
blockquote span {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: #555;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* FLEXBOX SPACING PATTERNS (MANDATORY) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,58,94,0.10);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
  justify-content: space-between;
}
.logo img {
  height: 38px;
  transition: transform .25s cubic-bezier(.68,-0.55,.27,1.55);
}
.logo:hover img {
  transform: rotate(-9deg) scale(1.04);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 15px;
  color: var(--brand-primary);
  transition: background .18s, color .18s;
  position: relative;
  z-index: 1;
}
.main-nav a:not(.button-primary):hover {
  background: var(--brand-turquoise);
  color: #fff;
}
.button-primary {
  background: var(--brand-electric-pink);
  color: #fff !important;
  border: none;
  box-shadow: 0 3px 20px 0 rgba(251,38,108,0.13);
  border-radius: 22px;
  font-weight: bold;
  padding: 9px 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: background .13s, box-shadow .18s, transform .18s;
  cursor: pointer;
  outline: 0;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 6px 30px 0 rgba(24,152,253,0.16);
  transform: translateY(-1px) scale(1.03);
}
.button-secondary {
  background: var(--brand-yellow);
  color: var(--brand-primary);
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1rem;
  transition: background .15s, box-shadow .18s, color .13s;
  margin-top: 8px;
  letter-spacing: .5px;
  box-shadow: 0 2px 16px 0 rgba(255,231,76,0.13);
  cursor: pointer;
  text-transform: uppercase;
  outline: 0;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--brand-orange);
  color: #fff;
}

/* --- BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 6px 14px 3px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, color .15s, transform .15s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-turquoise);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU & SLIDE --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,58,94,0.99);
  box-shadow: 0 6px 36px 0 rgba(34,58,94,0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 25px;
  padding-left: 0;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin-left: 14px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-turquoise);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 30px;
  padding-left: 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding: 12px 6px 12px 0;
  border-left: 7px solid transparent;
  transition: color .13s, border .13s, background .13s;
  border-radius: 0 14px 14px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-yellow);
  border-left: 7px solid var(--brand-electric-pink);
  background: rgba(34,58,94,0.5);
}

/* --- HERO SECTIONS (startseite, about, faq, contact) --- */
.hero-section, .about-hero-section, .faq-hero-section, .contact-hero-section, .thank-you-section {
  background: linear-gradient(90deg, #fff 30%, var(--brand-turquoise) 120%);
  min-height: 260px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  box-shadow: 0 6px 50px 0 rgba(34,58,94,0.13);
  border-radius: 0 0 42px 0;
  margin-bottom: 30px;
}
.hero-section h1, .about-hero-section h1, .contact-hero-section h1, .faq-hero-section h1, .thank-you-section h1 {
  font-size: 2.7rem;
  color: var(--brand-electric-pink);
  text-shadow: 0 2px 16px #ffe74c55;
  margin-bottom: 8px;
}
.hero-section h2, .about-hero-section h2, .contact-hero-section h2, .faq-hero-section h2, .thank-you-section h2 {
  font-size: 1.6rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.hero-section p, .about-hero-section p, .contact-hero-section p, .faq-hero-section p {
  max-width: 670px;
  color: #3B4856;
}
.hero-section .button-primary, .about-hero-section .button-primary,
.contact-hero-section .button-primary, .thank-you-section .button-primary {
  margin-top: 13px;
}

/* --- FEATURES SECTION --- */
.features-section {
  background: #fff;
  border-radius: 24px 80px 64px 12px;
  box-shadow: 0 4px 32px 0 rgba(251,38,108,0.08);
}
.features-section h2 {
  color: var(--brand-primary);
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 22px;
}
.feature {
  background: var(--brand-turquoise);
  border-radius: 16px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 240px;
  box-shadow: 0 4px 28px 0 rgba(24,152,253,0.10);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .15s, box-shadow .15s;
  gap: 8px;
}
.feature:hover, .feature:focus {
  transform: translateY(-4px) scale(1.035) rotate(-3deg);
  box-shadow: 0 8px 40px 0 rgba(34,58,94,0.16);
}
.feature img {
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 5px 14px #1898fd33);
}
.feature h3 {
  color: var(--brand-primary);
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.feature p {
  color: #313B42;
  font-size: 0.99rem;
}

/* --- TRUST & RATING SECTION --- */
.trust-section {
  background: #ffe74c12;
  border-radius: 24px 64px 24px 64px;
  box-shadow: 0 4px 20px 0 rgba(255,39,108,0.06);
  color: #232234;
}
.trust-section h2 {
  color: var(--brand-primary);
  font-size: 2rem;
}
.trust-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.12rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-electric-pink);
  font-weight: bold;
  margin-bottom: 17px;
}
.rating-stars img {
  height: 26px;
  filter: drop-shadow(0 0 8px #fb266c30);
}
.rating-stars span {
  margin-left: 12px;
  color: #ab1170;
  font-size: 1.03rem;
}
.associations {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}
.associations img {
  height: 34px;
  filter: grayscale(0);
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  color: #20222C;
  gap: 20px;
  box-shadow: 0 4px 32px 0 rgba(251,38,108,0.13);
  border-radius: 28px;
  padding: 20px 32px;
  margin-top: 16px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 670px;
  position: relative;
  border-left: 7px solid var(--brand-turquoise);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  box-shadow: none;
  color: var(--brand-primary);
  font-size: 1.08rem;
  padding: 0;
  margin: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #222;
}

/*--- PROCESS OVERVIEW ---*/
.process-overview-section {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 36px 18px 36px 10px;
  box-shadow: 0 8px 38px 0 rgba(24,152,253,0.10);
}
.process-overview-section h2 {
  color: #fff;
  font-size: 2rem;
}
.process-overview-section ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.process-overview-section li {
  font-size: 1.03rem;
  font-family: var(--font-body);
}
.process-overview-section .button-primary {
  background: var(--brand-yellow);
  color: var(--brand-primary) !important;
  font-weight: bold;
  margin-top: 12px;
}
.process-overview-section .button-primary:hover {
  background: var(--brand-orange);
  color: #fff !important;
}

/* --- FAQ PREVIEW/SECTIONS --- */
.faq-preview-section, .faq-cta-section {
  background: #fff;
  border-radius: 16px 64px 16px 32px;
  box-shadow: 0 1px 15px 0 rgba(34,58,94,0.08);
}
.faq-preview-section h2, .faq-cta-section h2 {
  color: var(--brand-electric-pink);
}
.faq-preview-section ul, .faq-list-section ul {
  margin-bottom: 12px;
}
.faq-preview-section li, .faq-list-section li {
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 5px;
}
.faq-preview-section .button-secondary, .faq-cta-section .button-primary {
  margin-top: 8px;
}
.faq-list-section .faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,58,94,0.11);
  margin-bottom: 24px;
  padding: 20px 24px;
  transition: box-shadow .13s, transform .12s;
}
.faq-list-section .faq-item:hover {
  box-shadow: 0 4px 32px 0 rgba(251,38,108,0.10);
  transform: translateY(-2px) scale(1.01);
}
.faq-list-section .faq-item h3 {
  color: var(--brand-electric-pink);
}

/* --- CONTACT PREVIEW/SECTIONS --- */
.contact-preview-section, .contact-form-section, .contact-info-section, .map-section {
  background: #fff;
  border-radius: 22px 42px 22px 22px;
  box-shadow: 0 1px 11px 0 rgba(34,58,94,0.08);
}
.mini-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.mini-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.01rem;
}
.mini-contact li img {
  width: 18px;
  margin-right: 9px;
  vertical-align: middle;
}
.contact-info-section ul, .contact-info-section .mini-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.06rem;
}
.contact-info-section li img {
  width: 20px; margin-right: 8px; vertical-align: sub;
}
.contact-info-section p, .mini-contact p {
  font-size: 1.01rem;
}
.map-section .map-fallback {
  background: #f1fbfe;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--brand-primary);
  font-size: 1.06rem;
}
.map-section .map-fallback img {
  height: 42px;
  margin-bottom: 8px;
}

/* --- FORMS --- */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
label {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--brand-primary);
  font-size: 1rem;
  letter-spacing: .5px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  border: 2px solid var(--brand-turquoise);
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  background: #f8fafd;
  color: #232234;
  transition: border .13s, box-shadow .12s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-electric-pink);
  box-shadow: 0 0 0 1.5px var(--brand-turquoise), 0 4px 24px 0 rgba(251,38,108,0.04);
}
textarea {
  min-height: 90px;
  resize: vertical;
}

/* --- ABOUT US --- */
.company-story-section, .philosophy-section {
  background: #fff;
  border-radius: 16px 32px 64px 32px;
  box-shadow: 0 2px 16px 0 rgba(251,38,108,0.07);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.04rem;
}
.mission, .vision {
  background: #effffb;
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 15px 0 rgba(121,180,115,0.06);
}
.team-section {
  background: var(--brand-turquoise);
  border-radius: 24px 64px 12px 36px;
  box-shadow: 0 4px 20px 0 rgba(24,152,253,0.13);
}
.team-section h2 {
  color: var(--brand-primary);
}
.team-section .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 17px;
  justify-content: flex-start;
}
.profile {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(34,58,94,0.09);
  padding: 20px 18px;
  flex: 1 1 170px;
  min-width: 170px;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.profile img {
  border-radius: 50%;
  background: #e4fdf6;
  padding: 12px;
  height: 54px;
  margin-bottom: 7px;
}
.profile h3 {
  color: var(--brand-electric-pink);
  font-size: 1.1rem;
}
.qualifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.97rem;
  align-items: center;
  margin-top: 12px;
}
.qualifications img {
  width: 24px;
  margin-right: 7px;
  vertical-align: middle;
}

/* --- SERVICES --- */
.services-overview-section {
  background: #fff;
  border-radius: 37px 14px 8px 37px;
  box-shadow: 0 3px 28px 0 rgba(121,180,115,0.07);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 12px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-size: 1.08rem;
  background: var(--brand-turquoise);
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(24,152,253,0.08);
  padding: 13px 16px;
}
.service-list img {
  width: 36px;
  margin-right: 10px;
}
.pricing-overview {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  margin-top: 24px;
}
.pricing-overview h2 {
  color: #fff;
}
.pricing-overview ul li {
  margin-bottom: 5px;
}
.service-details-section {
  background: #fff;
  border-radius: 20px 38px 12px 38px;
  box-shadow: 0 3px 28px 0 rgba(251,38,108,0.07);
}
.service-detail {
  margin-bottom: 22px;
  padding: 15px 12px;
  border-left: 6px solid var(--brand-primary);
  border-radius: 14px 0 0 14px;
  background: #f8fafd;
}
.service-detail h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--brand-electric-pink);
}
.service-detail .price {
  background: var(--brand-yellow);
  color: #333;
  font-size: .92rem;
  padding: 2px 12px;
  border-radius: 11px;
  margin-left: 10px;
  min-width: 70px;
  font-weight: bold;
}
.cta-section {
  background: var(--brand-yellow);
  border-radius: 22px 60px 22px 22px;
  color: var(--brand-primary);
  box-shadow: 0 1px 18px 0 rgba(255,231,76,0.10);
  text-align: center;
}
.cta-section h2 {
  color: var(--brand-primary);
}

/* --- GENERIC TEXT SECTIONS (IMPRESSUM, DATENSCHUTZ, ETC.) --- */
.text-section {
  background: #fff;
  border-radius: 24px 24px 60px 24px;
  box-shadow: 0 1px 19px 0 rgba(34,58,94,0.07);
}
.text-section h1, .text-section h2 {
  color: var(--brand-primary);
}
.text-section a {
  color: var(--brand-electric-pink);
  text-decoration: underline;
}
.text-section a:hover, .text-section a:focus {
  color: var(--brand-blue);
}
.text-section ul {
  margin: 10px 0 20px 20px;
  list-style: disc inside;
}
.text-section ul li {
  color: #384153;
  font-size: 0.99rem;
  padding-bottom: 4px;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 -6px 30px 0 rgba(34,58,94,.13);
  border-radius: 48px 0 0 0;
  margin-top: 80px;
  padding-top: 12px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 16px 5px 16px;
}
footer .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: var(--brand-turquoise);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
footer .footer-links a:hover {
  background: var(--brand-electric-pink);
  color: #fff;
}
footer .cta-footer {
  margin-left: auto;
}
footer .company-info p {
  font-size: 0.97rem;
  color: #EBF9F7;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #223A5E;
  color: #fff;
  box-shadow: 0 -8px 44px 0 #0002;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 22px 16px 18px 16px;
  flex-wrap: wrap;
  animation: slideUpBanner .44s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slideUpBanner {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  max-width: 420px;
  font-size: 1.04rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__button, .cookie-banner__settings {
  background: var(--brand-electric-pink);
  color: #fff;
  border: none;
  border-radius: 17px;
  font-weight: bold;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 2px;
  transition: background .13s, color .14s;
  cursor: pointer;
  letter-spacing: .6px;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}
.cookie-banner__settings {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: var(--brand-turquoise);
  color: var(--brand-primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 100000;
  background: rgba(24,28,38,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 23px 64px 23px 23px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 8px 32px 0 rgba(34,58,94,0.17);
  width: 96%;
  max-width: 415px;
  min-width: 230px;
}
.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal__header h2 {
  color: var(--brand-electric-pink);
  font-size: 1.3rem;
  margin-bottom: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-electric-pink);
  cursor: pointer;
  margin-left: 12px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 16px 0;
}
.cookie-modal__category {
  background: #F6F8FC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  font-size: 1.04rem;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: var(--brand-turquoise);
  width: 19px; height: 19px;
  border-radius: 4px;
  margin-left: 7px;
}
.cookie-modal__category--locked input[type=checkbox]{
  accent-color: #d2e8ef;
}
.cookie-modal__category--locked label {
  text-decoration: line-through dotted;
  color: #B1B1B1;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal__actions button {
  background: var(--brand-electric-pink);
  color: #fff;
  border: none;
  border-radius: 17px;
  font-weight: bold;
  font-size: 1rem;
  padding: 9px 22px;
  cursor: pointer;
  transition: background .13s, color .13s;
  letter-spacing: .7px;
}
.cookie-modal__actions button:hover {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  background: #fff;
  border-radius: 64px 24px 24px 24px;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(251,38,108,0.07);
}
.thank-you-section h1 {
  color: var(--brand-primary);
}
.thank-you-section p {
  font-size: 1.1rem;
  margin: 14px 0 22px 0;
}

/* --- MISC --- */
del { color: #b00; }
ins { color: #19b400; }
hr {
  border: none; border-bottom: 2px solid var(--brand-turquoise);
  margin: 32px 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 1020px) {
  .features-section .feature-grid, .team-profiles {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  section, .section {
    padding: 29px 8px;
  }
  .about-hero-section, .hero-section, .faq-hero-section, .thank-you-section, .contact-hero-section {
    padding-top: 54px;
    padding-bottom: 54px;
    min-height: 170px;
  }
  .features-section .feature-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; padding: 0 5px; }
  .content-wrapper {
    gap: 20px;
  }
  .section { margin-bottom: 34px; padding: 18px 5px; }
  .hero-section, .about-hero-section, .faq-hero-section, .contact-hero-section, .thank-you-section {
    min-height: unset;
    padding: 35px 7px 42px 7px;
    border-radius: 0 0 40px 0;
    margin-bottom: 18px;
  }
  .hero-section h1, .about-hero-section h1, .contact-hero-section h1, .faq-hero-section h1, .thank-you-section h1 {
    font-size: 1.5rem;
  }
  .features-section .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .feature {
    max-width: 100%;
    min-width: 0;
  }
  .process-overview-section, .cta-section, .team-section, .trust-section, .services-overview-section, .company-story-section, .service-details-section {
    border-radius: 18px 14px 14px 8px;
    box-shadow: 0 2px 13px 0 rgba(121,180,115,0.055);
  }
  .team-profiles, .service-list, .qualifications ul {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .profile {
    min-width: unset;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 18px 9px;
    box-shadow: 0 2px 13px 0 rgba(251,38,108,0.09);
    border-radius: 16px;
    min-width: 0;
    width: 100%;
    margin-left: 0; margin-right: 0;
  }
  .faq-list-section .faq-item {
    padding: 14px 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 14px 4px 5px 4px;
  }
  .mobile-menu {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile-nav {
    padding-left: 20px;
    gap: 24px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 19px 5px 15px 5px;
    font-size: 0.99rem;
  }
}
@media (max-width: 420px) {
  .testimonial-card,
  .faq-list-section .faq-item,
  .profile {
    padding-left: 6px; 
    padding-right: 6px;
  }
  .cookie-modal__dialog { padding: 12px 6px 15px 6px; }
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, main { box-shadow: none !important; border-radius: 0 !important; }
}
