/* ==== CSS RESET & BASE ==== */
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-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #F2E9DC;
  color: #224665;
  font-size: 16px;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #224665;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #8EC6CF; }
ul, ol { list-style: none; }
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700;900&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  color: #224665;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; font-weight: 900; }
h2 { font-size: 1.5rem; margin-bottom: 14px; font-weight: 700; }
h3 { font-size: 1.125rem; margin-bottom: 10px; font-weight: 700; }
p, li, table, th, td, span, label {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #224665;
}
strong { font-weight: bold; }

/* ==== GLOBAL CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
.hero,
.features,
.about-preview,
.services-overview,
.testimonials,
.cta,
.about,
.values,
.services,
.pricing,
.faq,
.gallery-info,
.contact,
.privacy,
.gdpr,
.terms,
.thankyou,
.cookie-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: #8EC6CF;
  box-shadow: 0 2px 14px 0 rgba(34,70,101,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 20px;
}
header img {
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a,
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.footer-nav a:hover {
  color: #fff;
  background: #224665;
}
.main-nav .cta-primary {
  background: #224665;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  margin-left: 6px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 10px 0 rgba(34,70,101,0.10);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid #224665;
}
.main-nav .cta-primary:hover {
  background: #fff;
  color: #224665;
  transform: translateY(-2px) scale(1.05);
  border-color: #8EC6CF;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #224665;
  background: #F2E9DC;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  position: relative;
  margin-left: 16px;
  z-index: 201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #8EC6CF;
  color: #fff;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #8EC6CF;
  padding: 0;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.8,.2,.2,1);
  box-shadow: 4px 0 40px 0 rgba(34,70,101,0.08);
}
.mobile-menu.active { display: flex; transform: translateX(0); }
.mobile-menu-close {
  font-size: 2rem;
  color: #224665;
  background: #F2E9DC;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2002;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #224665;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 84px 0 0 24px;
  width: calc(100vw - 84px);
  max-width: 420px;
}
.mobile-nav a {
  font-size: 1.3rem;
  padding: 12px 0 12px 10px;
  border-radius: 12px;
  color: #224665;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: none;
  transition: background 0.25s, color 0.2s, transform 0.11s;
  font-weight: bold;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #224665; color: #fff; transform: scale(1.06); }

@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
  .main-nav a { font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ==== HERO ==== */
.hero {
  background: #F9E68E;
  border-radius: 0 0 46px 46px;
  box-shadow: 0 4px 40px 0 rgba(255,165,90,0.10);
  min-height: 280px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  animation: hero-bounce-in 1s cubic-bezier(.28,.84,.42,1) both;
}
@keyframes hero-bounce-in {
  0% {opacity:0; transform:translateY(40px) scale(.9);}
  80% {opacity:0.9; transform:translateY(-10px) scale(1.01);}
  100% {opacity:1;  transform:none;}
}
.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 220px;
}
.hero .content-wrapper {
  max-width: 600px;
  gap: 18px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1 {
  color: #224665;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.hero p { font-size: 1.25rem; color: #224665; margin-bottom: 12px; }
.hero .cta-primary {
  margin-top: 18px;
  font-size: 1.1rem;
  padding: 14px 32px;
}

@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 28px 28px;
    min-height: 130px;
    padding: 32px 8px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero .cta-primary { padding: 12px 22px; }
}

/* ==== FEATURES ====*/
.features {
  background: #fff8f1;
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px 0 rgba(140,198,207,0.04);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2E9DC;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(140,198,207,0.16);
  padding: 28px 24px 20px 24px;
  transition: transform 0.22s, box-shadow 0.21s;
  min-width: 220px;
  flex: 1 1 220px;
}
.feature-item:hover {
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(140,198,207,0.16), 0 0 0 2px #8EC6CF33;
  cursor: pointer;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-bottom: 7px;
  font-size: 1.11rem;
}

@media (max-width: 768px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item { padding: 22px 14px; }
}

/* ==== ABOUT PREVIEW & CTA OVERVIEW ==== */
.about-preview, .services-overview, .cta {
  background: #8EC6CF;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px 0 rgba(34,70,101,0.07);
}
.about-preview h2, .services-overview h2, .cta h2 {
  color: #224665;
  margin-bottom: 16px;
}
.about-preview a,
.services-overview a,
.cta a {
  margin-top: 14px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  border-radius: 20px;
  padding: 10px 22px;
  background: #224665;
  color: #fff;
  transition: background 0.2s, color 0.2s, transform 0.17s;
}
.about-preview a:hover,
.services-overview a:hover,
.cta a:hover { background: #fff; color: #224665; transform: scale(1.05); }

.services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  align-items: center;
}
.services-overview li {
  display: flex;
  align-items: center;
  background: #F2E9DC;
  border-radius: 14px;
  padding: 8px 16px 8px 8px;
  font-weight: 700;
  gap: 7px;
  font-size: 1rem;
  box-shadow: 0 2px 6px 0 rgba(34,70,101,0.05);
}
.services-overview li img {
  width: 28px;
  height: 28px;
}

@media (max-width: 700px) {
  .services-overview ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px 0 rgba(34,70,101,0.10);
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonials h2 {
  color: #224665;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  background: #F2E9DC;
  border-radius: 18px;
  padding: 26px 24px 18px 24px;
  box-shadow: 0 2px 10px 0 rgba(34,70,101,0.09);
  min-width: 220px;
  transition: box-shadow 0.21s, transform 0.14s;
  color: #224665;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(140,198,207,0.17);
  transform: scale(1.017) rotate(0.5deg);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #224665;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #224665;
  opacity: 0.75;
  margin-left: 4px;
}

/* ==== TEAM/ABOUT/VALUES/THANK YOU ==== */
.about, .values, .team, .thankyou {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px 0 rgba(140,198,207,0.09);
}
.text-section {
  margin: 18px 0 0 0;
}

.values ul, .team ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0 0;
}
.values li, .team li {
  font-size: 1.05rem;
  background: #8EC6CF14;
  border-radius: 10px;
  padding: 7px 16px;
}

/* ==== SERVICES (LIST & CARD) ==== */
.services {
  background: #8EC6CF16;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 10px 0 rgba(140,198,207,0.10);
}
.service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: space-between;
}
.service-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(34,70,101,0.10);
  padding: 22px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
  position: relative;
}
.service-category:hover {
  box-shadow: 0 8px 28px rgba(140,198,207,0.13);
  transform: scale(1.025);
}
.service-category img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
.service-category h3 { margin-bottom: 5px; }
@media (max-width: 900px) {
  .service-category-grid {
    flex-direction: column;
    gap: 10px;
  }
  .service-category { min-width: 100%; }
}

/* ==== PRICING TABLE ====*/
.pricing table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(140,198,207,0.10);
}
.pricing th, .pricing td {
  padding: 12px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #8EC6CF34;
}
.pricing th {
  background: #8EC6CF38;
  color: #224665;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing tr:last-child td { border-bottom: none; }
.pricing a.cta-primary { margin: 18px 0 0 0; }

/* ==== FAQ ==== */
.faq {
  background: #F2E9DC;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 8px 0 rgba(34,70,101,0.06);
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: space-between;
}
.faq-list > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(140,198,207,0.10);
  padding: 18px 16px;
  flex: 1 1 230px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.faq-list > div:hover {
  box-shadow: 0 8px 36px rgba(140,198,207,0.11);
  transform: scale(1.03);
}
.faq-list h3 { margin-bottom: 7px; font-weight: 700; }

@media (max-width: 900px) {
  .faq-list { flex-direction: column; gap: 14px;}
}

/* ==== CONTACT ==== */
.contact {
  background: #F9E68E22;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px 0 rgba(34,70,101,0.07);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.10rem;
}
.contact-details img {
  height: 26px;
  width: 26px;
  margin-bottom: 0;
}
.info-note {
  background: #8EC6CF2a;
  border-radius: 14px;
  padding: 13px 18px;
  color: #224665;
  font-size: 0.98rem;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #8EC6CF;
  color: #224665;
  box-shadow: 0 -2px 14px 0 rgba(34,70,101,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border-radius: 18px 18px 0 0;
  width: 98vw;
  max-width: 1200px;
  margin: 0 auto;
  animation: cookie-banner-slide 0.7s ease both;
  font-size: 1rem;
}
@keyframes cookie-banner-slide {
  from { opacity: 0; transform: translateY(50%); }
  to { opacity: 1; transform: none; }
}
.cookie-banner p { flex: 1; margin: 0; color: #224665;}
.cookie-banner .cookie-btn {
  background: #224665;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  margin-right: 8px;
  margin-bottom: 0;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.22s, color 0.21s, transform 0.12s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus { background: #fff; color: #224665; transform: scale(1.04); }
.cookie-banner .cookie-btn.secondary {
  background: #F9E68E;
  color: #224665;
  border: 2px solid #224665;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #224665;
  color: #F9E68E;
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: rgba(34,70,101,0.32);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.32s cubic-bezier(.7,.2,.3,1) both;
}
@keyframes cookie-modal-fade-in {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal-backdrop.active { display: flex; }
.cookie-modal {
  background: #fff;
  color: #224665;
  border-radius: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 54px 0 rgba(140,198,207,0.28);
  padding: 32px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookie-modal-slide 0.37s cubic-bezier(.7,.2,.3,1) both;
}
@keyframes cookie-modal-slide {
  from { transform: translateY(80px) scale(0.9); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 { color: #224665; font-size: 1.35rem; margin-bottom: 8px; }
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 8px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category-toggle {
  display: inline-block;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: #8EC6CF47;
  position: relative;
  margin-left: 9px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-category-toggle[data-enabled="true"] {
  background: #8EC6CF;
}
.cookie-category-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #224665;
  transition: left 0.2s, background 0.2s;
}
.cookie-category-toggle[data-enabled="true"]:before {
  left: 22px;
  background: #F9E68E;
}
.cookie-category-toggle[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  background: #224665;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .cookie-btn.secondary {
  background: #F9E68E;
  color: #224665;
  border: 2px solid #224665;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #8EC6CF;
  color: #224665;
}
.cookie-modal .cookie-btn.secondary:hover, .cookie-modal .cookie-btn.secondary:focus {
  background: #224665;
  color: #F9E68E;
}

/* ==== FOOTER ====*/
footer {
  background: #224665;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 50px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(34,70,101,0.14);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.footer-section {
  flex: 1 1 120px;
  margin-bottom: 20px;
}
.footer-section img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.18s, background 0.19s;
  padding: 4px 0;
  border-radius: 8px;
}
.footer-nav a:hover { color: #8EC6CF; background: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
.footer-copy {
  width: 100%;
  text-align: center;
  margin: 22px 0 12px 0;
  color: #fff;
  opacity: 0.67;
  font-size: 0.95rem;
}

/* ==== CARDS/CONTAINERS - SHADOW & SPACING ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(140,198,207,0.11);
  padding: 20px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(140,198,207,0.17);
  transform: scale(1.025) rotate(-1deg);
}
.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;
}

/* ==== SPACING & MEDIA ==== */
@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section,
  .hero,
  .features,
  .about-preview,
  .services-overview,
  .testimonials,
  .cta,
  .about,
  .values,
  .services,
  .pricing,
  .faq,
  .gallery-info,
  .contact,
  .privacy,
  .gdpr,
  .terms,
  .thankyou,
  .cookie-policy {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
  .content-wrapper {gap: 14px; }
  .footer-section img { height: 32px; }
  .footer-contact { font-size: 0.94rem; }
}
@media (max-width: 600px) {
  .hero, .features, .about-preview, .cta,
  .about, .values, .services, .pricing,
  .faq, .gallery-info, .contact, .privacy,
  .gdpr, .terms, .thankyou, .cookie-policy {
    padding: 12px 2px;
    margin-bottom: 24px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.10rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .main-nav { display: none; }
}

/* ==== BUTTONS & MICRO-INTERACTIONS ==== */
.cta-primary, .cta a, .main-nav .cta-primary,
.services-overview a, .about-preview a, .pricing a.cta-primary {
  background: linear-gradient(95deg, #224665 75%, #8EC6CF 100%);
  box-shadow: 0 2px 22px 0 #8EC6CF22;
  color: #fff;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
  padding: 12px 30px;
  margin-top: 4px;
  margin-bottom: 5px;
  display: inline-block;
  border: 2px solid #8EC6CF;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, border 0.18s, transform 0.13s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #224665;
  border-color: #224665;
  transform: scale(1.065);
}

/* ==== ACCENTS & CALLS TO ACTION ==== */
::-webkit-selection { background: #F9E68E; color: #224665; }
::selection        { background: #F9E68E; color: #224665; }

/* ==== TABLES GENERIC ==== */
table { border-collapse: collapse; }
th, td { padding: 10px 12px; border-bottom: 1px solid #8EC6CF34; }

/* ==== SCROLLBARS ==== */
body::-webkit-scrollbar { width: 12px; background: #F2E9DC; }
body::-webkit-scrollbar-thumb { background: #8EC6CF66; border-radius: 10px; }
body::-webkit-scrollbar-thumb:hover { background: #8EC6CFcc; }

/* ==== ANIMATIONS FOR PLAYFUL FEEL ==== */
.card, .feature-item, .service-category, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.18s, transform 0.18s, background 0.19s;
}
.card:active, .feature-item:active, .service-category:active, .testimonial-card:active {
  transform: scale(0.99) rotate(-1deg);
}

/* ==== VISUAL DECORATIVE ELEMENTS (OPTIONAL) ==== */
.feature-item:after, .service-category:after {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 38px; height: 38px;
  background: #F9E68E;
  border-radius: 58% 42% 56% 44%/52% 38% 62% 48%;
  z-index: 0;
  opacity: 0.33;
  pointer-events: none;
}

/* ==== UTILS ==== */
.visually-hidden {
  position: absolute!important;
  height: 1px!important;
  width: 1px!important;
  overflow: hidden!important;
  clip: rect(1px, 1px, 1px, 1px)!important;
  white-space: nowrap!important;
  border: 0!important;
}

/* === END === */
