/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #1f2331;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #1b8af5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e63946;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
:focus {
  outline: 2px solid #e63946;
  outline-offset: 2px;
}

/* --- BRAND COLORS & ELECTRIC ACCENTS --- */
:root {
  --primary: #264653;
  --secondary: #E9C46A;
  --accent: #F4F4F4;
  --electric-pink: #e63946;
  --electric-blue: #1b8af5;
  --electric-green: #27ae60;
  --electric-orange: #ff9500;
  --dark-text: #232323;
  --light-bg: #ffffff;
  --grey: #eeeeee;
  --shadow: 0 6px 24px 0 rgba(31,54,101,0.14);
}

/* --- FONT IMPORTS (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: none;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--electric-blue);
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  color: var(--electric-green);
}
h4, h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
p {
  font-size: 1.1rem;
  color: var(--dark-text);
  margin-bottom: 14px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

/* --- SECTION SPACING (MANDATORY) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* Cards and Flex Containers */
.card-container, .card-grid, .content-grid, .features, .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card, .service-card {
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 310px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(28, 80, 109, 0.15);
  border-radius: 22px;
  padding: 32px 26px 24px 26px;
  transition: transform 0.18s, box-shadow 0.2s;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover, .service-card:hover {
  box-shadow: 0 10px 32px rgba(27, 138, 245, 0.15);
  transform: translateY(-4px) scale(1.023);
}
.service-card strong {
  color: var(--electric-orange);
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 700;
}

/* --- TEXT/IMAGE SECTION --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 22px rgba(230, 57, 70, 0.08);
  background: var(--secondary);
  color: var(--dark-text);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #222;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--electric-pink);
  margin-top: 3px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- BUTTONS / CTA --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--electric-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  padding: 14px 36px;
  border-radius: 26px;
  box-shadow: 0 2px 12px rgba(230, 57, 70, 0.16);
  letter-spacing: 0.07em;
  transition: all 0.21s cubic-bezier(.65,1.61,.53,.91);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1b8af5;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 138, 245, 0.22);
  color: #fff;
}

/* --- HEADER / NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 3px solid var(--electric-pink);
  box-shadow: 0 3px 12px 0 rgba(62, 150, 182, 0.08);
  position: relative;
  z-index: 12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.logo {
  height: 50px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.025em;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: var(--electric-pink);
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  background: var(--electric-pink);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 4px 15px 1px 15px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* --- MOBILE MENU (SLIDE), FULL SCREEN --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(38, 70, 83, 0.97);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.61,1.23,.41,.93);
  display: flex;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 6px 48px 0 rgba(27,138,245,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 20px 25px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 42px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  background: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--electric-pink);
  color: #fff;
}


/* --- SECTION/CONTENT SPECIFIC --- */
ul li img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 9px;
}
ol li {
  font-size: 1.07rem;
  color: #232323;
  margin-bottom: 10px;
  font-weight: 500;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.trust-badges img {
  height: 56px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(233,196,106,0.13);
  transition: box-shadow 0.18s, transform 0.18s;
}
.trust-badges img:hover {
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.18);
  transform: scale(1.07);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.09rem;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
}
.table-wrapper {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 1.1rem;
  min-width: 320px;
}
thead {
  background: var(--electric-blue);
  color: #fff;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}
th, td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--accent);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 80px;
  width: 100%;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 20px 28px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
}
.footer-links a {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.17s;
  font-size: 1rem;
}
.footer-links a:hover { color: var(--electric-pink); }
.contact-snippet {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.06rem;
  font-weight: 400;
  flex: 1 1 220px;
}
.contact-snippet img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 2px;
}
.legal-notice {
  flex: 1 1 200px;
  color: #cdd5e0;
  font-size: 0.96rem;
  margin-top: 13px;
}
.legal-notice a {
  color: #E9C46A;
  font-weight: 600;
}
.legal-notice a:hover {
  color: var(--electric-orange);
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1b8af5;
  color: #fff;
  z-index: 800;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  padding: 27px 20px 20px 20px;
  box-shadow: 0 -6px 16px rgba(38,70,83,0.13);
  animation: banner-appear 0.58s cubic-bezier(.7,1.34,.41,.93);
}
@keyframes banner-appear {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 14px 0 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: var(--electric-orange);
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  margin: 0 7px 0 0;
  padding: 10px 25px;
  font-size: 1.13rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255,204,80,0.14);
  transition: background 0.16s, transform 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--electric-pink);
  color: #fff;
  transform: scale(1.07) translateY(-2px);
}
.cookie-btn.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--electric-blue);
  border: 1.5px solid var(--electric-blue);
  box-shadow: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--electric-blue);
  color: #fff;
  border-color: var(--electric-blue);
}
/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 110vh);
  z-index: 9999;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 64px rgba(50,50,50,0.22);
  padding: 38px 32px 24px 32px;
  border-radius: 32px;
  min-width: 320px;
  max-width: 98vw;
  width: 440px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.44s cubic-bezier(.81,1.61,.38,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.cookie-modal h3 {
  color: var(--electric-blue);
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.cookie-modal label {
  margin-bottom: 10px;
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--electric-orange);
  width: 18px;
  height: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: var(--primary);
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--electric-pink);
}

/* --- ANIMATIONS / MICRO-INTERACTIONS --- */
section, .card, .service-card, .testimonial-card, .cta-btn, th, td {
  transition: box-shadow 0.17s, background 0.18s, color 0.15s, transform 0.13s;
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) --- */
@media (max-width: 1250px) {
  .container { max-width: 97vw; }
  section { padding: 28px 10px; }
}
@media (max-width: 940px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  .card, .service-card { max-width: 98vw; }
  .footer-links, .contact-snippet, .legal-notice {
    flex: 1 1 160px !important;
  }
}
@media (max-width: 850px) {
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links, .contact-snippet, .legal-notice {
    margin-right: 0; width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 20px;
  }
  section {
    margin-bottom: 38px;
    padding: 20px 6px;
    border-radius: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card-container, .card-grid, .content-grid, .features, .trust-badges, .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column !important;
    gap: 18px;
  }
  .card, .service-card {
    min-width: 98vw;
    max-width: 100vw;
    border-radius: 14px;
    padding: 18px 8px 16px 14px;
  }
  .testimonial-card {
    padding: 13px 6px;
    border-radius: 12px;
  }
  .footer-links, .contact-snippet, .legal-notice {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 88vw;
    padding: 23px 12px 18px 12px;
  }
}
@media (max-width: 510px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.09rem; }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 19px;
    border-radius: 14px;
  }
  .mobile-nav a { font-size: 1.02rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 7px 9px 7px; gap: 10px; }
  .cookie-modal { margin: 0; width: 96vw; }
}

/* --- SCROLLBAR STYLING (MODERN/ELECTRIC) --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: var(--electric-pink);
  border-radius: 8px;
}

/* --- INPUTS, FORMS, ETC. (FOR KONTAKT, ETC.) --- */
input[type="text"], input[type="email"], textarea, select {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 16px;
  background: #fff;
  border: 1.5px solid var(--electric-blue);
  border-radius: 12px;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  transition: border 0.17s, background 0.14s;
  box-shadow: 0 2px 8px rgba(27,138,245,0.07);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border: 2px solid var(--electric-orange);
  background: #fff5e6;
}
label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  display: block;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}

button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  background: var(--electric-orange);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 25px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.14s;
  margin-top: 10px;
}
button:hover, input[type="submit"]:hover {
  background: var(--electric-blue);
}

/* --- Z-INDEX CONSISTENCY (ENSURE LAYERS) --- */
header { z-index: 10; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 800; }
.cookie-modal { z-index: 9999; }

/* --- SELECTED/ACTIVE NAV LINK (Desktops) --- */
.main-nav a.active {
  background: var(--electric-blue);
  color: #fff;
  font-weight: 800;
}

/* --- ELECTRIC HIGHLIGHT EFFECTS (VIBRANT) --- */
h2, .cta-btn, .mobile-nav a.active, .main-nav a.active {
  text-shadow: 0 2px 12px rgba(27,138,245,0.13), 0 1px 7px rgba(230,57,70,0.09);
}
.testimonial-card, .service-card, .card {
  border: 2px solid #fff0;
  transition: border 0.19s, box-shadow 0.20s, transform 0.14s;
}
.testimonial-card:hover, .service-card:hover, .card:hover {
  border: 2px solid var(--electric-orange);
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 14px; }
.mt-3 { margin-top: 22px; }
.mb-2 { margin-bottom: 14px; }
.mb-3 { margin-bottom: 20px; }

/* --- HIDE/SHOW NAV FOR MOBILE --- */
@media (max-width:768px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* Additional vibrant, energetic accent rules */
.cta-btn {
  box-shadow: 0 6px 24px rgba(230,57,70,0.13), 0 1.5px 6px rgba(27,138,245,0.07);
  border: 2px solid #fff0;
  text-shadow: 0 1px 7px rgba(255,255,255,0.13);
}
.cta-btn:active {
  background: var(--electric-green);
  color: #fff;
  border-color: var(--electric-pink);
}

/* Misc adjustments for vibrant look */
.card, .service-card, .testimonial-card {
  background: linear-gradient(105deg, #fff 85%, #F4F4F4 100%);
}

/* Ensure flexbox spacing everywhere as required */
.card-container, .card-grid, .content-grid, .features, .text-image-section, .trust-badges {
  gap: 20px;
}
.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; }

/* --- END OF FILE --- */
