/* === CSS RESET & BASES === */
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.6;
  background: #FFFFFF;
  color: #32526E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #32526E;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus, a:hover {
  color: #8D9900;
  outline: none;
}

:root {
  --color-primary: #32526E;
  --color-secondary: #E2E4E6;
  --color-accent: #8D9900;
  --color-bg: #FFFFFF;
  --color-dark: #182532;
  --color-vibrant1: #FF6F61;
  --color-vibrant2: #FFD166;
  --color-vibrant3: #53B3CB;
  --radius-s: 12px;
  --radius-m: 20px;
  --shadow-card: 0 4px 24px rgba(50,82,110, 0.11);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 0 #E2E4E6;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-vibrant3);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--font-display);
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.87rem;
  color: #666;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: #FCFDFB;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* === SECTIONS & FLEX PATTERNS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-m);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.18s, transform 0.18s;
  overflow: hidden;
  padding: 28px 20px;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(50,82,110,0.16);
  transform: translateY(-4px) scale(1.024);
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-m);
  background: #fff;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #1b2330;
  font-size: 1.08rem;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--color-vibrant1);
}
.testimonial-card em {
  color: var(--color-vibrant3);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === ARTISTIC & CREATIVE ELEMENTS === */
.icon-highlights {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.icon-highlights img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-vibrant2);
  padding: 8px;
  box-shadow: 0 2px 8px #f3f3f3;
}
.icon-highlights span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  background: #fffbe2;
  border-radius: 16px;
  padding: 4px 16px;
  margin-right: 8px;
}

.feature-grid, .tips-grid, .faq-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-grid > div, .tips-grid > div, .service-cards > div, .faq-list > div {
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  background: #fff;
  padding: 28px 18px;
  flex: 1 1 280px;
  min-width: 260px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover, .tips-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 28px 0 rgba(50, 82, 110, 0.15);
  transform: translateY(-3px) scale(1.018);
}
.feature-grid img, .tips-grid img, .service-cards img {
  width: 40px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 0 #B8C135);
}
.price {
  color: var(--color-vibrant1);
  font-weight: bold;
  font-size: 1.15rem;
  margin-top: 10px;
}
.faq-list > div h3 {
  margin-bottom: 6px;
  color: var(--color-vibrant2);
}

/* === BUTTONS & CTA === */
.cta-btn, .cookie-btn, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  padding: 12px 30px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(141,153,0,0.10);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.16s, transform 0.17s, box-shadow 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--color-vibrant1), var(--color-accent));
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(141,153,0,0.21);
  outline: none;
}

button, .mobile-menu-close, .mobile-menu-toggle {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

.cookie-btn {
  font-size: 1rem;
  padding: 10px 22px;
  margin: 0 8px 0 0;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-vibrant1);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.06);
  transform: scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1300;
  padding: 12px 15px;
  color: #fff;
  border-radius: 50%;
  background: var(--color-primary);
  font-size: 2.1rem;
  box-shadow: 0 2px 8px rgba(50,82,110,.08);
  transition: background 0.17s, box-shadow 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  transform: translateX(-100%);
  z-index: 2000;
  transition: transform 0.33s cubic-bezier(.45,.57,.25,1) 0s;
  box-shadow: 0 4px 36px rgba(50,82,110,0.16);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  align-self: flex-end;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  padding: 8px 16px 8px 16px;
  margin: 18px 20px 0 0;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 0 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 11px 0;
  width: 100%;
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-primary);
  border-radius: 0;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  background: var(--color-secondary);
}
/* === HEADER === */
header {
  background: #fff;
  border-bottom: 1.5px solid #E2E4E6;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 0 20px 0;
}
header nav {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: 20px;
  padding: 8px 15px;
  position: relative;
  transition: background 0.14s, color 0.13s;
}
header nav a:focus, header nav a:hover {
  background: var(--color-accent);
  color: #fff;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 30px;
}

/* === CONTACT & FOOTER === */
.contact-details, .footer-contact {
  font-family: var(--font-body);
  font-size: 1.03rem;
  color: #436488;
  margin-top: 18px;
  line-height: 1.7;
}
.contact-details img {
  vertical-align: middle;
  width: 22px;
  margin-right: 8px;
}
.footer-contact li {
  margin-bottom: 7px;
}
footer {
  background: #F5F7FA;
  border-top: 1.8px solid #DEE1E3;
  padding: 58px 0 24px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 25px;
  margin: 22px 0 10px 0;
}
footer nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
footer img {
  width: 48px;
  margin-bottom: 10px;
}
footer small {
  margin-top: 18px;
  display: block;
  color: #678;
  opacity: 0.93;
}

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9000;
  background: #fffbe2;
  color: var(--color-primary);
  box-shadow: 0 -2px 24px rgba(50,82,110,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 23px 12px 23px 32px;
  font-size: 1rem;
  border-top: 3px solid var(--color-accent);
  animation: cookie-slideup 0.48s cubic-bezier(.31,1.21,.85,.93);
}
@keyframes cookie-slideup {
  from {transform: translateY(100%); opacity: 0.3;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  max-width: 480px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 10000;
  background: rgba(50,82,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.33s;
}
@keyframes cookiefadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  max-width: 340px;
  border-radius: var(--radius-m);
  box-shadow: 0 6px 32px 2px rgba(50,82,110,0.13);
  padding: 38px 22px 28px 22px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--color-vibrant3);
  margin-bottom: 12px;
}
.cookie-settings-category {
  margin-bottom: 16px;
}
.cookie-settings-category label {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-left: 9px;
}
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  color: var(--color-vibrant1);
  font-size: 1.8rem;
  border: none;
  margin: 0 0 10px 0;
  cursor: pointer;
}

/* === UNIQUE/ARTISTIC FONTS === */
body, p, li, ul, ol {
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1, h2, h3, .cta-btn, header nav a, .icon-highlights span, .mobile-nav a {
  font-family: var(--font-display), Arial, sans-serif;
}

/* === ARTISTIC: COLOR BLOBS & UNDERLINES (decorative only) === */
.section-art-blob {
  position: absolute;
  z-index: 0;
  opacity: 0.17;
}
.section-art-blob--left {
  left: -70px;
  top: 10px;
  width: 170px;
  height: 120px;
  background: var(--color-vibrant1);
  border-radius: 48% 52% 42% 58% / 45% 52% 48% 55%;
}
.section-art-blob--right {
  right: -60px;
  bottom: 24px;
  width: 110px;
  height: 90px;
  background: var(--color-vibrant3);
  border-radius: 56% 44% 35% 65% / 60% 44% 56% 40%;
}

/* === RESPONSIVE === */
@media (max-width: 1140px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .service-cards > div, .tips-grid>div {
    min-width: 200px;
    flex-basis: 90%;
    flex: 1 1 100%;
  }
}
@media (max-width: 800px) {
  header .container { flex-direction: column; align-items: flex-start; padding: 23px 0 11px 0; }
  header nav { flex-wrap: wrap; gap: 12px; justify-content: flex-start; margin-right: 0; }
  .footer-contact { font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 16px; }
  .content-wrapper { padding: 22px 7px; }
  .feature-grid, .tips-grid, .faq-list, .service-cards { flex-direction: column; gap: 15px; }
  .content-grid { flex-direction: column; gap: 12px; }
  section { padding: 30px 7px; }
  .container { padding: 0 8px; }
  .icon-highlights {gap: 11px;}
  .mobile-menu-toggle {
    display: flex;
  }
  /* Hide normal nav on mobile */
  header nav, .cta-btn {
    display: none!important;
  }
}
@media (max-width: 600px) {
  h1, .h1 {font-size: 1.5rem;}
  h2, .h2 {font-size: 1.05rem;}
  .feature-grid > div, .service-cards > div, .tips-grid>div { min-width: 30vw; padding: 24px 7px; }
  .cookie-banner {flex-direction: column; align-items: flex-start; padding: 15px 7px 15px 7px;}
  .cookie-banner .cookie-actions {padding-top:6px; gap:7px;}
}

/* === HOVER & MICRO-INTERACTIONS === */
.card, .feature-grid > div, .tips-grid > div, .service-cards > div {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature-grid > div:hover, .tips-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 32px 0 rgba(76,108,170,0.15);
  transform: translateY(-2.5px) scale(1.012);
}
.cta-btn:active {
  background: var(--color-primary);
  color: #fff;
}
input[type="checkbox"], input[type="radio"] {
  accent-color: var(--color-accent);
}

/* === VISUAL HIERARCHY === */
h1 + p, h2 + p, h3 + p {
  font-size: 1.09rem;
  line-height: 1.74;
  color: #4d6277;
  margin-bottom: 12px;
}

/* === MISC UTILITIES === */
.mb-0 {margin-bottom: 0!important;}
.mt-0 {margin-top: 0!important;}

/* === Z-INDEX LAYERS === */
header { z-index: 120; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 9000; }
.cookie-modal { z-index: 10000; }

/* === ACCESSIBILITY === */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  box-shadow: 0 0 0 2px var(--color-vibrant3);
}

/* === CUSTOM ARTISTIC DIVIDERS === */
.divider-art {
  width: 80px;
  height: 6px;
  background: var(--color-vibrant1);
  border-radius: 4px;
  margin: 18px 0 22px 0;
}

/* === ARTISTIC SHADOWS FOR HERO === */
.content-wrapper.hero {
  background: linear-gradient(115deg, #FFF 70%, #FFD166 100%);
  box-shadow: 0 30px 90px -30px #B8C13544, var(--shadow-card);
  border-top: 12px solid var(--color-vibrant1);
}

/* === END OF FILE === */