/* =======================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1EFE3;
  color: #1A2D37;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  appearance: none;
}
button {
  cursor: pointer;
}

/* ===============================
   BRAND VARIABLES               
   =============================== */
:root {
  --primary: #205273;
  --primary-hover: #18435b;
  --secondary: #55C2A1;
  --secondary-hover: #43a684;
  --accent: #F1EFE3;
  --text-main: #1A2D37;
  --text-accent: #205273;
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --section-bg: #fff;
  --card-bg: #F7F7F2;
  --shadow: 0 2px 8px rgba(32,82,115,0.06), 0 1.5px 4px rgba(32,82,115,0.05);
  --shadow-hover: 0 4px 16px rgba(32,82,115,0.12), 0 2px 6px rgba(32,82,115,0.08);
  --border-radius: 18px;
  --border-sharp: 0;
  --transition: all 0.2s cubic-bezier(.56,.09,.35,1.29);
  --cta-radius: 22px;
  --danger: #C23D41;
}

/* =====================================================
   TYPOGRAPHY (GEOMETRIC STRUCTURED MODERN STYLE)    
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  line-height: 1.125;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  background: var(--card-bg);
  padding: 20px 32px;
  border-left: 4px solid var(--secondary);
  border-radius: var(--border-radius);
  margin: 20px 0;
  color: var(--primary);
}
.subheadline {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ========================
   CONTAINERS & SECTION   
   ======================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
}
.text-section {
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) + 4px);
  padding: 40px 24px;
  box-shadow: var(--shadow);
}

/* =======================
   FLEXBOX LAYOUTS        
   ====================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  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;
  background: #fff;
  color: var(--text-main);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  padding: 20px 24px;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}
.testimonial-meta {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 400;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 18px;
}
.features-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin: 24px 0;
}
.info-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tipps-feed ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===================================
   BUTTONS & CTA                     
   =================================== */
.cta-button {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 13px 36px;
  border-radius: var(--cta-radius);
  box-shadow: 0 2px 8px rgba(85,194,161,0.11);
  transition: var(--transition);
  display: inline-block;
  margin-top: 14px;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  outline: none;
}
nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 10px;
  transition: background 0.14s, color 0.15s;
  margin-right: 4px;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* ========================================
   HEADER, NAVIGATION, BRAND & BURGER MENU 
   ======================================== */
header {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(32,82,115,0.06);
  padding: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  gap: 14px;
}
header img {
  height: 50px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
header .cta-button {
  margin-left: 14px;
}
.mobile-menu-toggle {
  font-size: 2.2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  margin-left: 14px;
  display: none;
  z-index: 21;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.63,.01,.42,1.18);
  box-shadow: 2px 0 24px rgba(32,82,115,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  padding: 16px;
  margin-right: 10px;
  background: transparent;
  color: var(--primary);
  border: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 30px 0 40px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.17rem;
  padding: 9px 0;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 8px;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* ========================
   FOOTER                  
   ======================== */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 40px;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding: 36px 0 24px 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #fff;
  background: transparent;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
footer nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
footer .brand-info {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #f6fafc;
}
footer .brand-info img {
  vertical-align: middle;
  margin-right: 6px;
  height: 18px;
  width: 18px;
}

/* ========================
   MAIN STYLED SECTIONS    
   ======================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.weather-widget {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--border-radius);
  padding: 15px 18px;
  margin: 18px 0 0 0;
  font-size: 1.08rem;
  font-family: var(--font-body);
  box-shadow: 0 2px 4px rgba(85, 194, 161, 0.13);
}
.features-icons img {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(32,82,115,0.06);
  padding: 10px;
  width: 48px;
  height: 48px;
}

/* =============================
   CARD/MICROINTERACTION STYLES
   ============================= */
.card {
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
}

/* =====================================
   TABLES, FORMS, ETC (MINIMAL STYLES)
   ===================================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  margin-bottom: 36px;
}
th, td {
  padding: 11px 10px;
  border-bottom: 1px solid #e1e8ec;
  text-align: left;
}

/* ========================
   MISCELLANEOUS           
   ======================== */
::-webkit-scrollbar {
  width: 9px;
  background: #e5ecee;
  border-radius: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/* ====================
   RESPONSIVE           
   ==================== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  header nav {
    gap: 2px;
  }
}
@media (max-width: 925px) {
  section,
  .text-section {
    padding: 30px 10px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .features-icons {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-button {
    margin-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .features-list li {
    font-size: 1rem;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 6px;
    padding: 16px 12px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding: 30px 0 18px 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  p, li, blockquote {
    font-size: 0.98rem;
  }
  section, .text-section {
    padding: 19px 1vw;
    margin-bottom: 30px;
  }
  .testimonial-card {
    padding: 12px 7px;
    font-size: 0.97rem;
  }
}

/* ========================
   COOKIE CONSENT BANNER   
   ======================== */
.cookie-consent {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -2px 9px rgba(32,82,115,0.14);
  padding: 22px 24px 18px 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  font-family: var(--font-body);
  animation: slideUpCookie 0.45s cubic-bezier(.66,.03,.47,1.05);
}
@keyframes slideUpCookie {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 3px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  border-radius: 12px;
  border: none;
  padding: 9px 22px;
  margin: 0 3px;
  background: var(--secondary);
  color: var(--primary);
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.12s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(85,194,161,0.14);
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary-hover);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #a52e31;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===============================
   COOKIE CONSENT MODAL           
   =============================== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,82,115,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  animation: fadeInCookie 0.28s;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px 26px 26px;
  min-width: 310px;
  max-width: 390px;
  box-shadow: 0 6px 30px rgba(32,82,115,0.23);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  animation: popUpCookie 0.33s cubic-bezier(.66,.05,.46,1.09);
}
@keyframes popUpCookie {
  from {transform: scale(0.85) translateY(30px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1.06rem;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  width: 32px;
  height: 18px;
  accent-color: var(--secondary);
  border-radius: 11px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-title {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.23rem;
  letter-spacing: 0.03em;
}

@media (max-width: 560px) {
  .cookie-modal-content {
    padding: 21px 8vw 17px 8vw;
    min-width: 0;
    max-width: 100vw;
  }
}

/* Hide modal or banner by default when needed */
.cookie-modal[hidden], .cookie-consent[hidden] {
  display: none !important;
}

/* ========================
   VISUAL ACCENTS          
   ======================== */
hr {
  border: none;
  border-top: 2px solid var(--primary);
  margin: 32px 0 18px;
  opacity: 0.19;
}

/* ========================================
   ACCESSIBILITY: FOCUS STYLES             
   ======================================== */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ========================================
   GEOMETRIC STRUCTURED DESIGN DECORATION  
   ======================================== */
/* Add some geometric accent shapes */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--secondary);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 100%);
  opacity: 0.082;
  z-index: 0;
  pointer-events: none;
}
.section {
  position: relative;
  z-index: 1;
}

@media (max-width: 520px) {
  .section::before {
    width: 34px;
    height: 34px;
    right: 5px;
    top: -17px;
  }
}

/* END OF STYLE.CS */
