/* CSS RESET & NORMALIZE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F1F1F1;
  color: #234067;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #44A573;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.5,.2,.1,1);
}
a:hover, a:focus {
  color: #ff8a00;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #222C45;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
p {
  margin-bottom: 16px;
  font-size: 1.06rem;
}
::-webkit-input-placeholder { color: #9fb0c5; }
::-moz-placeholder { color: #9fb0c5; }
:-ms-input-placeholder { color: #9fb0c5; }
::placeholder { color: #9fb0c5; }
body, html {
  width: 100%; height: 100%;
}

/* COLOR VARIABLES (w/ Fallbacks) */
:root {
  --primary: #234067;
  --secondary: #44A573;
  --accent: #F1F1F1;
  --bright-yellow: #ffe164;
  --fun-pink: #ff68a6;
  --fun-orange: #ff8a00;
  --fun-blue: #4298f0;
  --fun-violet: #8E64FF;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 40px;
  --shadow1: 0 2px 8px rgba(34,64,103,0.08);
  --shadow2: 0 4px 16px rgba(68,165,115,0.16);
}

/* LAYOUT UTILITY CLASSES */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow1);
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,64,103,0.16);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow2);
  min-width: 260px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(34,64,103,0.20);
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER + LOGO + NAVBAR */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(34,64,103,0.09);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  padding: 8px 16px;
  text-shadow: 0 1px 4px rgba(34,64,103,0.07);
  transition: background 0.18s, color 0.18s, transform .12s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--bright-yellow);
  background: rgba(255,255,255,0.10);
  transform: scale(1.07) rotate(-2deg);
  text-decoration: none;
}
.cta-btn {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(68,165,115,0.11);
  margin-left: 24px;
  margin-right: 12px;
  border: 2px solid var(--secondary);
  outline: none;
  transition: background .18s, color .18s, transform .16s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ff8a00;
  color: #fff;
  border-color: #ff8a00;
  transform: scale(1.074) rotate(-3deg);
  box-shadow: 0 6px 28px #ffe16444;
}

/* MOBILE MENU BURGER BUTTON */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 15px;
  margin-left: 16px;
  border: 2px solid #fff;
  transition: background .20s, color .20s, transform .12s;
  z-index: 31;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--fun-pink);
  color: #fff;
  outline: none;
  transform: scale(1.15);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY SLIDING PANEL */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: linear-gradient(109deg,#fff 82%, #ffe164 100%) no-repeat;
  box-shadow: 0 2px 36px #23406722;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.7,.2,.1,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #ff8a00;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  border: none;
  margin-bottom: 18px;
  transition: background 0.17s, transform .12s;
  box-shadow: 0 2px 6px #ffc40044;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #44A573;
  outline: none;
  transform: scale(1.125);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #234067;
  padding: 14px 0;
  border-radius: 11px;
  text-align: left;
  font-weight: 600;
  transition: background .14s, color .14s, transform .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe164;
  color: #ff68a6;
  outline: none;
  transform: scale(1.03) rotate(-1.5deg);
}

@media (max-width: 540px) {
  .mobile-menu {
    padding: 24px 12px 12px 12px;
  }
  .mobile-nav a {
    font-size: 1.09rem;
    padding: 11px 0;
  }
  .cta-btn {
    font-size: 0.94rem;
    padding: 10px 18px;
  }
}

/* HERO BANNER & CTA */
.hero {
  background: linear-gradient(120deg, #ffe164 0%, #fff 60%, #44A573 100%) no-repeat;
  padding: 60px 0 60px 0;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.3rem;
  color: #234067;
  text-shadow: 0 2px 10px #fff8, 0 1px 3px #ffe164bb;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.hero p {
  color: #222C45;
  font-size: 1.28rem;
  margin-bottom: 24px;
}
.hero .cta-btn {
  margin-top: 16px;
  background: #ff68a6;
  border-color: #ff68a6;
  box-shadow: 0 6px 48px #ff68a62f;
}
.hero .cta-btn:hover {
  background: #44A573;
  border-color: #44A573;
}

/* FEATURES (Why Choose, Price, About, etc.) */
.features {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 18px #22406705;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.85rem;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 30px;
  list-style: none;
  margin-bottom: 12px;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f8fbf6;
  border-radius: 15px;
  padding: 22px 18px;
  font-size: 1.09rem;
  box-shadow: 0 1px 7px #44A57310;
  flex: 1 1 275px;
  min-width: 220px;
  transition: box-shadow .19s, transform .18s;
}
.features ul li:hover {
  box-shadow: 0 6px 28px #44A57322;
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
}
.features ul li img {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: #ffe164;
  padding: 6px;
  margin-right: 12px;
  box-shadow: 0 2px 8px #ffe16455;
  animation: icon-bounce 1.1s ease-in-out infinite alternate;
}
@keyframes icon-bounce {
  to { transform: translateY(-8px) rotate(-4deg); }
}
.features ul li strong {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.10rem;
  color: var(--secondary);
  margin-bottom: 4px;
  display: block;
}

/* SERVICE CARDS/PREVIEW */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px #23406719;
  padding: 28px 22px 22px 22px;
  flex: 1 1 270px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, transform .15s;
  border: 2px solid #ffe164;
  position: relative;
}
.service-card img {
  width: 42px; height: 42px;
  background: #44A57319;
  border-radius: 13px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px #44A57333;
  transition: transform .19s;
}
.service-card:hover {
  box-shadow: 0 10px 32px #44A5732d;
  transform: translateY(-10px) scale(1.045) rotate(-1.5deg);
}
.service-card:hover img {
  transform: scale(1.135) rotate(-10deg);
}
.service-card h3 {
  font-size: 1.2rem;
  color: #234067;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 1.04rem;
  color: #444C60;
}
.service-link a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ff68a6;
  font-weight: 600;
  font-size: 1.13rem;
  transition: color 0.15s, transform .12s;
}
.service-link a:hover { color: #44A573; transform: translateX(8px) scale(1.05); }

/* TESTIMONIALS */
.testimonials {
  background: #fffbe9;
  padding: 44px 0 44px 0;
  border-radius: 24px;
  box-shadow: 0 2px 14px #ffe16416;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #222C45;
  font-size: 2rem;
  margin-bottom: 24px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #234067;
  box-shadow: 0 2px 14px #23406715;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  max-width: 360px;
  padding: 36px 26px 22px 26px;
  margin-bottom: 20px;
  font-size: 1.14rem;
  border-top: 6px solid #ff68a6;
  border-left: 3px dashed #ffe164;
  box-shadow: 0 8px 32px #ffe16422;
  transition: box-shadow .19s, transform .14s;
  position: relative;
}
.testimonial-card .stars {
  color: #ff8a00;
  font-size: 1.4rem;
  letter-spacing: .10em;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card .author {
  font-size: .99rem;
  font-weight: 600;
  color: #44A573;
  margin-top: 10px;
}
.testimonial-card:after {
  content: '\201C';
  font-family: 'Montserrat', Arial, sans-serif;
  position: absolute;
  top: -22px;
  left: 24px;
  font-size: 2.80rem;
  color: #ffe16499;
  font-weight: 700;
  pointer-events:none;
}

/* CTA SECTION (Bottom prompt) */
.cta {
  background: linear-gradient(102deg, #44A573 50%, #ffe164 100%);
  padding: 50px 0;
  border-radius: 22px;
  box-shadow: 0 5px 24px #44A5731a;
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 2rem;
}
.cta p {
  color: #fff9;
  font-size: 1.18rem;
  margin-bottom: 18px;
}
.cta .cta-btn {
  background: #ff68a6;
  border-color: #ff68a6;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #222C45;
  border-color: #234067;
}

/* ABOUT / LEGAL / INFO */
.about, .legal, .confirmation, .contact {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px #22406717;
  margin-bottom: 60px;
  padding: 40px 22px 36px 22px;
}
.about h1, .confirmation h1, .contact h1, .legal h1 {
  font-size: 2rem;
  color: #44A573;
}
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  margin-bottom: 12px;
  padding-left: 22px;
}
.text-section li {
  margin-bottom: 9px;
  font-size: 1.06rem;
  color: #234067;
}
.text-section strong {
  color: #ff68a6;
}

/* PRICING TABLE */
.pricing {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 16px #22406712;
  margin-bottom: 60px;
  padding: 40px 22px 46px 22px;
}
.price-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: separate;
  border-spacing: 0 15px;
}
.price-table th {
  background: #234067;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  padding: 14px 12px;
}
.price-table tr {
  background: #f8fbf6;
  border-radius: 12px;
}
.price-table td {
  padding: 16px 12px;
  border-bottom: 2px solid #ffe164;
  font-size: 1.1rem;
  color: #234067;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.value-highlight {
  margin-top: 16px;
  color: #44A573;
  font-weight: bold;
  font-size: 1.1rem;
}

/* TIPS / SAVJETI */
.popular-topics {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px #4298f022;
  margin-bottom: 40px;
  padding: 38px 20px 32px 20px;
}
.categories {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.categories a {
  background: #ff8a00;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 20px;
  transition: background .13s, color .13s;
  font-size: 1.04rem;
}
.categories a:hover, .categories a:focus {
  background: #44A573;
  color: #ffe164;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f4efff;
  border-radius: 14px;
  padding: 10px 15px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px #8E64FF22;
}
.search-bar input {
  border: none;
  background: transparent;
  font-size: 1.08rem;
  padding: 7px;
  color: #234067;
  width: 200px;
}
.tip-highlights {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tip-highlights li {
  font-size: 1.04rem;
  color: #222C45;
  padding-left: 8px;
}
.tips-list {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px #23406710;
  margin-bottom: 48px;
  padding: 30px 18px;
}
.tip-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
}
.tip-listings li {
  background: #f8fbf6;
  border-radius: 15px;
  box-shadow: 0 1px 8px #4298f022;
  flex: 1 1 260px;
  min-width: 210px;
  padding: 18px 15px;
  transition: box-shadow .14s, transform .12s;
  margin-bottom: 16px;
}
.tip-listings li a {
  color: #44A573;
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}
.tip-listings li a:hover {
  color: #ff68a6;
  transform: translateX(5px) scale(1.04);
}
.tip-listings li:hover {
  box-shadow: 0 6px 18px #4298f036;
  transform: translateY(-5px) scale(1.034) rotate(-1deg);
}

/* FOOTER */
footer {
  background: #222C45;
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.footer-logo img {
  width: 74px; height: auto;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #ffe164;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .98rem;
  border-radius: 7px;
  padding: 5px 10px;
  transition: color .16s, background .13s;
}
.footer-nav a:hover { color: #ff68a6; background: #fff;
}
.footer-contact {
  color: #f1f1f1;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.footer-copy {
  color: #ffe164c0;
  font-size: .98rem;
  margin-top: 8px;
}

/* COOKIE CONSENT BANNER/POPUP (BOTTOM FIXED) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 500;
  background: #ffe164;
  color: #234067;
  box-shadow: 0 -3px 18px #ffe16454;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 30px 18px 30px;
  font-size: 1.06rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: banner-slideup 0.44s cubic-bezier(.7,.2,.1,1);
}
@keyframes banner-slideup {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 18px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-right: 7px;
  margin-bottom: 4px;
  transition: background .15s, color .13s, transform .12s;
  background: #44A573;
  color: #fff;
}
.cookie-btn.reject {
  background: #ff68a6;
}
.cookie-btn.settings {
  background: #4298f0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #234067;
  color: #ffe164;
  transform: scale(1.07) rotate(-2deg);
}

/* Cookie modal popup overlay */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(68,165,115,.13);
  z-index: 888;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.29s cubic-bezier(.7,.2,.12,1);
}
@keyframes cookie-fadein { from{ opacity:0; } to{ opacity:1; } }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 450px;
  width: 95vw;
  padding: 36px 24px 32px 24px;
  box-shadow: 0 10px 48px #44A57336;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-pop .36s cubic-bezier(.7,.2,.1,1);
}
@keyframes modal-pop { from{ transform: scale(0.84); opacity:0; } to{ transform: scale(1); opacity:1; } }
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #44A573;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  background: #f8fbf6;
  border-radius: 10px;
  padding: 14px 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .switch {
  position: relative;
  width: 38px; height: 22px;
  display: inline-block;
}
.cookie-modal .switch input { display: none; }
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffe164;
  border-radius: 22px;
  transition: .3s;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #ff68a6;
  border-radius: 50%;
  transition: .3s;
}
.cookie-modal .switch input:checked + .slider {
  background: #44A573;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(15px);
  background: #ffe164;
}
.cookie-modal .close-btn {
  position: absolute; top: 16px; right: 16px;
  background: #ff68a6;
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.16rem;
  border: none;
  transition: background .13s, transform .13s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #44A573;
  color: #fff;
  outline: none;
  transform: scale(1.11);
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-cards {
    flex-direction: column;
    gap: 14px;
  }
  .service-cards, .tip-listings {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .container {
    padding: 0 5px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .features, .about, .legal, .confirmation, .contact, .pricing, .testimonials, .tips-list, .popular-topics {
    border-radius: 15px;
    padding: 20px 5px 18px 5px;
    margin-bottom: 40px;
  }
  .hero {
    padding: 32px 0 32px 0;
  }
  .footer-nav, .footer-logo, .footer-contact {
    gap: 9px;
    margin-bottom: 7px;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  header .container {
    flex-direction: row;
    gap: 4px;
    height: 56px;
  }
  .logo img {
    height: 38px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  .cta, .features, .hero {
    padding: 24px 0 24px 0;
    border-radius: 9px;
  }
  .container {
    padding: 0 3px;
  }
  .cookie-banner {
    font-size: .96rem;
    padding: 11px 7px 10px 7px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
  }
  .cookie-modal {
    padding: 18px 5px 14px 5px;
    border-radius: 13px;
    max-width: 96vw;
  }
}


/****** MICRO-INTERACTIONS & PLAYFUL EFFECTS ******/
@media (hover: hover) {
  .service-card:hover:before {
    content: '';
    display: block;
    position: absolute;
    left: -14px; top: -14px;
    width: 29px; height: 29px;
    background: #ff68a6;
    opacity: .13;
    border-radius: 50%;
    z-index: 0;
    animation: blob-hover 0.7s linear;
  }
}
@keyframes blob-hover {
  from { transform: scale(0.2); opacity: .5; }
  to { transform: scale(1); opacity: .13; }
}

/****** FORM STYLING (optional) ******/
input, textarea, select {
  padding: 11px 12px;
  font-size: 1rem;
  border-radius: 11px;
  border: 2px solid #ffe164;
  outline: none;
  background: #fff;
  color: #234067;
  margin-bottom: 16px;
  transition: border-color .16s, box-shadow .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #ff68a6;
  box-shadow: 0 0 0 2px #ff68a624;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #234067;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}

/****** MAP (simple) ******/
.map {
  background: #f8fbf6;
  border-radius: 13px;
  box-shadow: 0 2px 10px #44A5730c;
  padding: 18px 12px;
  margin-top: 17px;
  text-align: center;
  color: #4298f0;
}

/* Hide scroll on mobile-menu activation to prevent double scroll */
body.mobile-menu-open {
  overflow: hidden;
  position: relative;
}

/****** MISCELLANEOUS *******/
::selection {
  background: #ffe164;
  color: #234067;
}

/***** PLAYFUL DYNAMIC FONTS *****/
h1, h2, .cta-btn, .categories a, .mobile-nav a, .main-nav a, .service-card h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/***** VISUAL HIERARCHY *****/
h1 { font-size: 2.1rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.13rem; }

/***** ENSURE NO OVERLAPS BETWEEN FLEX ITEMS *****/
.card, .testimonial-card, .service-card, .feature-item, .tip-listings li {
  margin-bottom: 20px;
}

/* END CSS */
