/* =================================================
  FLUXBLOOM REISEN - PROFESSIONAL CORPORATE STYLE
  Brand Palette: blue/gray, accent orange, clean white
  Fonts: Montserrat (display), Open Sans (body)
  NAVIGATION & COOKIE BANNER included
  FLEXBOX-ONLY LAYOUTS (No CSS grid or columns)
================================================= */

/* === CSS RESET & NORMALIZATION === */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F6FAF8;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1C2428;
  background: #F6FAF8;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #084B53;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FAA541;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
ul li, ol li {
  line-height: 1.7;
  position: relative;
  padding-left: 0;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #084B53;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

address {
  font-style: normal;
  line-height: 1.7;
  color: #3F575F;
}
p {
  color: #2B373D;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

hr {
  border: none;
  border-top: 1px solid #dae6df;
  margin: 32px 0;
}

/* === BRAND COLORS === */
:root {
  --primary: #084B53;
  --secondary: #DAE6DF;
  --accent: #FAA541;
  --bg-light: #F6FAF8;
  --gray-dark: #1C2428;
  --gray-medium: #3F575F;
  --gray-border: #CAD8D2;
  --white: #fff;
}

/* === CONTAINER & WRAPPERS === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 720px;
}

/* === SECTION SPACING === */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 32px 0 0 0;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(8,75,83,0.09);
  border: 1px solid var(--gray-border);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover,
.card:focus {
  box-shadow: 0 4px 18px rgba(8,75,83,0.14);
  border-color: var(--secondary);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(8,75,83,0.13);
  border-left: 5px solid var(--accent);
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #1C2428;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #3F575F;
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(8,75,83,0.18);
}

/* Features & USP */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(8,75,83,0.08);
  padding: 20px 18px;
  min-width: 220px;
  margin-bottom: 20px;
}

/* USP-Grid (About page) */
.usp-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.usp-grid > div {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(8,75,83,0.09);
  padding: 30px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
.usp-grid img {
  width: 36px;
  margin-bottom: 12px;
}

@media (max-width: 968px) {
  .usp-grid {
    gap: 18px;
  }
  .usp-grid > div {
    min-width: 160px;
    padding: 18px 12px 12px 12px;
  }
}
@media (max-width: 680px) {
  .usp-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--white);
  border-bottom: 1.5px solid #e6eee8;
  padding: 0;
  box-shadow: 0 4px 18px rgba(8,75,83,0.03);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 18px;
}
header a img {
  height: 38px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1C2428;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header .cta-button.primary {
  margin-left: 16px;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  z-index: 203;
  line-height: 1.1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(8,75,83, 0.93);
  z-index: 200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,.01,.31,.99);
  /* Controlled by 'open' class via JS */
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white);
  align-self: flex-end;
  margin: 24px 28px 12px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 205;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
  width: 100vw;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 8px 0;
  transition: color 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}

@media (max-width: 1020px) {
  header .main-nav {
    display: none;
  }
  header .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none!important;
  }
}

/* === CTA BUTTONS === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(8,75,83,0.08);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cta-button.primary {
  background: var(--primary);
  color: var(--white);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #04626F;
  color: #fff6eb;
  box-shadow: 0 4px 14px rgba(8,75,83,0.13);
}
.cta-button.secondary {
  background: var(--accent);
  color: var(--primary);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #ffd188;
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(250,165,65,0.08);
}
.cta-button:active {
  filter: brightness(0.96);
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contact {
  color: var(--secondary);
  font-size: 0.96rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-brand img {
  height: 40px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    padding: 0 10px;
  }
  .footer-brand img {
    height: 32px;
  }
}

/* === HERO/INTRO === */
section .container > .content-wrapper:first-child {
  margin-top: 0;
  margin-bottom: 10px;
}

/* === LISTS & GENERAL ELEMENTS === */
ul li img {
  height: 28px;
  width: 28px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
ul li strong {
  color: #084B53;
}
.text-section ul, .text-section ol {
  margin-bottom: 18px;
  padding-left: 20px;
}
.text-section ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.text-section ol li {
  margin-left: 16px;
  list-style: decimal inside;
}

/* === FAQ & DETAILS === */
dl {
  width: 100%;
  margin-bottom: 24px;
}
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  color: var(--primary);
  margin-top: 12px;
}
dl dd {
  margin-bottom: 10px;
  color: #2B373D;
  line-height: 1.6;
  margin-left: 0;
  padding-left: 8px;
}

/* === FORMS (Newsletter/Contact) === */
input, textarea, select {
  width: 100%;
  padding: 12px 12px;
  box-sizing: border-box;
  border: 1px solid var(--gray-border);
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background: #FCFDFE;
}

/* === MODAL (For Cookie Settings) === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 400;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8,75,83,0.55);
  align-items: center;
  justify-content: center;
  transition: background 0.29s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1C2428;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(8,75,83,0.15);
  padding: 30px 32px 26px 32px;
  max-width: 390px;
  width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeInModal 0.36s cubic-bezier(.57,.12,.42,.99);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.93) translateY(30px);}
  to { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h3 {
  font-size: 1.23rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cookie-modal .cookie-toggle {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: flex-end;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #f5f8f6;
  color: #1C2428;
  padding: 28px 28px 18px 28px;
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 18px rgba(8,75,83,0.06);
  z-index: 399;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  animation: slideUpBanner 0.34s cubic-bezier(.51,.01,.31,.99);
}
@keyframes slideUpBanner {
  from { opacity:0; transform: translateY(60px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-banner__text {
  font-size: 1rem;
  max-width: 590px;
  line-height: 1.7;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-banner-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  padding: 9px 20px;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .accept:hover {
  background: #04626F;
}
.cookie-banner .reject {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.cookie-banner .reject:hover {
  background: #f1faf8;
  color: #04626F;
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings:hover {
  background: #ffd49e;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 8px 12px 8px;
  }
  .cookie-banner__text {
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 11px;
  }
}

/* === SYSTEM MESSAGES/ALERTS (eg. .success, .error) === */
.success {
  background: #e6fff4;
  border-left: 4px solid #18a67f;
  color: #0b5c4e;
  padding: 16px 18px;
  border-radius: 7px;
  margin-bottom: 18px;
}
.error {
  background: #fff1ec;
  border-left: 4px solid #FF415C;
  color: #b02a36;
  padding: 16px 18px;
  border-radius: 7px;
  margin-bottom: 18px;
}

/* === TYPOGRAPHY SCALES & QUOTES === */
blockquote {
  border-left: 3px solid var(--accent);
  background: #FFFAF4;
  color: #1C2428;
  padding: 16px 28px;
  font-style: italic;
  border-radius: 7px;
  margin: 18px 0;
  font-size: 1.08rem;
}

/* === ANIMATION MICRO-INTERACTIONS === */
.card, .feature-item, .testimonial-card, .usp-grid > div {
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .usp-grid > div:hover {
  transform: translateY(-4px) scale(1.014);
  box-shadow: 0 6px 18px rgba(8,75,83,0.18);
  border-color: var(--accent);
}

.cta-button, .cookie-banner button, .cookie-banner .cookie-banner-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .content-wrapper, .section, .card-container, .card, .feature-item, .usp-grid {
    gap: 14px;
  }
  .card {
    padding: 18px 11px;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  .card, .testimonial-card, .feature-item {
    padding: 14px 8px;
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.09rem;
  }
  .cta-button {
    font-size: 0.98rem;
    padding: 10px 13px;
  }
}

/* === SPECIAL: CARD-GRID & FLEX LAYOUTS AS FLEXBOX ONLY === */
.card-grid, .features, .feature-list {
  display: flex; flex-wrap: wrap;
  gap: 20px; justify-content: flex-start;
}
.card-grid .card, .features .feature-item, .feature-list li {
  margin-bottom: 20px;
}

/* === ACCESSIBILITY HIGHLIGHTS === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  box-shadow: 0 0 0 2px #FAA54180;
}

/* === UTILITY CLASSES === */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }

/* === PRINT STYLES === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none!important; }
  html, body { background: #fff !important; }
}

/* === END === */