/* ==================== CSS RESET & NORMALIZE ==================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F9FA;
  color: #253241;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1F4D67;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ==================== FLEX LAYOUTS & SPACING ==================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section,
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(31,77,103, 0.06), 0 1.5px 6px rgba(31,77,103,0.02);
}

.card-container, .feature-grid, .service-list, .usp-grid, .habit-guides-list, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(31,77,103, 0.03);
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(31,77,103, 0.08);
}

.content-grid, .service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #E5E8E9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(31,77,103,0.04);
  min-width: 260px;
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8fafb;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(31,77,103, 0.05);
  min-width: 220px;
  flex: 1 0 210px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: #1F4D67;
  box-shadow: 0 2px 10px rgba(31,77,103,0.07);
  position: relative;
  z-index: 10;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px 0;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 2px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2B840;
}
.cta.primary {
  background: #F2B840;
  color: #1F4D67;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 12px 26px;
  text-decoration: none;
  margin-left: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 2px 6px rgba(31,77,103,0.10);
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD76A;
  color: #15374B;
  box-shadow: 0 4px 18px rgba(31,77,103,.18);
}
.cta.secondary {
  background: #1F4D67;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 23px;
  text-decoration: none;
  margin-top: 18px;
  margin-left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(31,77,103,0.10);
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #253241;
  color: #F2B840;
}
.button, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.16s;
  cursor: pointer;
}

/* Hamburger menu toggle button */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #F2B840;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 22px;
  display: none;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}

/* MOBILE MENU (overlay) */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1F4D67;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.4,1.4,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 28px 28px;
  box-shadow: 4px 0 30px rgba(31,77,103,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F2B840;
  font-size: 2.1rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 28px;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 2px 12px 2px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  margin: 0 0 4px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2F6D8F;
  color: #F2B840;
}

/* ==================== HERO / MAIN SECTIONS ==================== */
.hero {
  background: linear-gradient(115deg, #e5e8e9 73%, #F2B840 180%);
  min-height: 320px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  text-align: left;
  padding: 65px 0 65px 0;
  border-radius: 0;
}
.hero h1 {
  color: #1F4D67;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.13rem;
  color: #253241;
  margin-bottom: 32px;
}

/* ==================== FEATURES ==================== */
.features {
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-item img {
  width: 44px;
  height: 44px;
}

/* ==================== SERVICES ==================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.service-item {
  background: #f8fafb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(31,77,103,0.05);
  padding: 26px 20px 22px 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 220px;
}
.service-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.service-item .service-price {
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1F4D67;
  font-size: 1.11rem;
  font-weight: 700;
}
.detailed-service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #f8fafb;
  border-radius: 10px;
  padding: 26px 22px;
  box-shadow: 0 2px 8px rgba(31,77,103,0.06);
}
.service-icon img {
  width: 42px;
  height: 42px;
}
.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: #f8fafb;
}
.testimonial-card p {
  color: #253241;
  font-size: 1.02rem;
}
.testimonial-name {
  color: #1F4D67;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.rating-display {
  color: #F2B840;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ==================== ABOUT VALUES/USPS ==================== */
.usp-grid, .value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.usp-item {
  background: #f8fafb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(31,77,103,0.06);
  padding: 20px 18px;
  min-width: 200px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.usp-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
}
.value-list {
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
  list-style: none;
}
.value-list li {
  font-size: 1.03rem;
  padding-left: 6px;
  color: #324564;
}
.text-section {
  margin-bottom: 24px;
}

/* ==================== ALLTAGSTIPPS / HABIT GUIDES ==================== */
.tip-list {
  margin: 0 0 16px 0;
  padding-left: 22px;
  color: #253241;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tip-categories {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.category {
  background: #1F4D67;
  color: #fff;
  padding: 5px 13px;
  border-radius: 30px;
  font-size: 0.93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.habit-guides-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.habit-guide {
  background: #f8fafb;
  border-radius: 8px;
  padding: 18px 16px;
  flex: 1 1 180px;
  min-width: 190px;
  box-shadow: 0 2px 8px rgba(31,77,103, 0.04);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.habit-cta {
  margin-top: 12px;
}

/* ==================== BLOG ==================== */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.99rem;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-post {
  background: #f8fafb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(31,77,103, 0.05);
  padding: 22px 18px 22px 18px;
  flex: 1 1 245px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.readmore {
  color: #1F4D67;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.15s;
}
.readmore:hover, .readmore:focus {
  color: #F2B840;
}

.newsletter-signup {
  background: #f8fafb;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(31,77,103, 0.04);
}
.newsletter-signup ul {
  list-style: disc inside;
  margin-bottom: 18px;
  color: #253241;
}

/* ==================== CONTACT & FAQ ==================== */
.contact-details {
  margin-bottom: 30px;
}
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 5px;
}
.location-map {
  margin-top: 18px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 10px 13px 10px;
  background: #E5E8E9;
  border-radius: 6px;
  font-size: 1rem;
}
.map-placeholder img {
  width: 24px;
  height: 24px;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list h3 {
  color: #1F4D67;
  margin-bottom: 7px;
  font-size: 1.07rem;
}

/* ==================== THANK YOU / NEXT STEPS ==================== */
.next-steps {
  margin: 12px 0 16px 0;
}
.next-steps ul {
  list-style: disc inside;
  color: #253241;
  margin-bottom: 7px;
}

/* ==================== POLICY PAGES ==================== */
.privacy-policy, .terms-of-use, .cookie-policy, .gdpr-section {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 10px rgba(31,77,103,0.05);
}

/* ==================== CTA FINAL ==================== */
.cta-final, .services-cta, .cta-discover {
  background: #1F4D67;
  color: #fff;
  padding: 40px 20px;
  border-radius: 14px;
  margin-bottom: 60px;
  text-align: center;
}
.cta-final h2, .services-cta h2, .cta-discover h2 {
  color: #fff;
  margin-bottom: 20px;
}

/* ==================== FOOTER ==================== */
footer {
  background: #E5E8E9;
  color: #253241;
  font-size: 0.99rem;
  padding: 0 0 44px 0;
  position: relative;
  z-index: 1;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  padding: 38px 20px 15px 20px;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #1F4D67;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2B840;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: auto;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #1F4D67;
  text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #F2B840;
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #253241;
  border-top: 1.5px solid #E5E8E9;
  box-shadow: 0 -5px 24px rgba(24,51,68,0.11), 0 -1px 3px rgba(40,61,86,.07);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 18px 24px;
  transition: transform 0.32s cubic-bezier(.32,1.46,.11,1), opacity 0.2s;
  font-size: 1rem;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner .cookie-btn {
  min-width: 120px;
  border: none;
  margin-left: 0;
  border-radius: 7px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: #E5E8E9;
  color: #1F4D67;
  box-shadow: 0 1px 5px rgba(31,77,103,0.04);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: #F2B840;
  color: #1F4D67;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: #FFD76A;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  border: 1.5px solid #E5E8E9;
  color: #1F4D67;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #E5E8E9;
}
.cookie-banner .cookie-btn.settings {
  background: #1F4D67;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #253241;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44, 61, 88, 0.32);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #253241;
  padding: 35px 30px 30px 30px;
  border-radius: 15px;
  min-width: 295px;
  max-width: 95vw;
  box-shadow: 0 8px 38px rgba(23,61,101,0.20);
  min-height: 120px;
  font-size: 1.03rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cookie-modal .cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #1F4D67;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #E5E8E9;
  position: relative;
  cursor: pointer;
  margin-left: 4px;
  border: 1.5px solid #c2c9ca;
  outline: none;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle.checked {
  background: #F2B840;
  border-color: #F2B840;
}
.cookie-modal .cookie-toggle .toggle-knob {
  transition: left 0.18s;
  position: absolute;
  left: 3px; top: 2.5px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(44,61,88,.06);
}
.cookie-modal .cookie-toggle.checked .toggle-knob {
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 18px; top: 15px;
  background: none;
  border: none;
  color: #1F4D67;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .cookie-close:hover {
  color: #F2B840;
}

/* ==================== UTILITIES & MISC ==================== */
a {
  color: #1F4D67;
  text-decoration: underline;
  transition: color 0.14s;
}
a:hover, a:focus {
  color: #F2B840;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 18px;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  .footer-container { flex-direction: column; gap: 28px; align-items: flex-start; }
}
@media (max-width: 925px) {
  .header-container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .main-nav { gap: 15px; flex-wrap: wrap; }
}
@media (max-width: 850px) {
  .feature-grid, .card-container, .service-list, .usp-grid, .habit-guides-list, .blog-post-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  main, .section, .content-wrapper, .privacy-policy, .terms-of-use, .cookie-policy, .gdpr-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .hero .content-wrapper { padding: 50px 0; text-align: left; }
  .cta.primary, .cta.secondary { font-size: 0.98rem; padding: 10px 18px; }
  .service-row, .feature-grid, .card-container, .usp-grid, .blog-post-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
  .newsletter-signup, .cta-final, .services-cta, .cta-discover {
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-container {
    flex-direction: column;
    gap: 22px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 568px) {
  html { font-size: 14px; }
  .container, .footer-container { padding-left: 9px; padding-right: 9px; }
  .section, .content-wrapper, .privacy-policy, .terms-of-use, .cookie-policy, .gdpr-section {
    padding: 24px 2vw;
    margin-bottom: 38px;
  }
  .cta.primary, .cta.secondary { width: 100%; text-align: center; padding: 12px 2px; font-size: 1rem; }
  .hero .content-wrapper { padding: 34px 0 38px 0; }
  .footer-contact { font-size: 0.92rem; }
}

/* ==================== HIDE/SHOW NAV FOR MOBILE ==================== */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ==================== ANIMATIONS & INTERACTIVE HINTS ==================== */
.cta, .button, button, .cookie-btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.18s, border-color 0.15s;
}
.card, .feature-item, .service-item, .blog-post, .usp-item, .habit-guide, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:hover, .feature-item:hover, .service-item:hover, .blog-post:hover, .usp-item:hover, .habit-guide:hover, .testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(31,77,103, 0.11), 0 1.5px 6px rgba(31,77,103,0.03);
  transform: translateY(-4px) scale(1.012);
}

/* ==================== FOCUS STATES ==================== */
a:focus, .cta:focus, .button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-close:focus {
  outline: 2px solid #F2B840;
  outline-offset: 1px;
  z-index: 2;
}

/* ==================== Z-INDEX & LAYERING ==================== */
.mobile-menu,
.cookie-modal-overlay {
  z-index: 9999;
}
.cookie-banner {
  z-index: 2000;
}

/* ==================== END OF CSS ==================== */
