/* ------------------
   0. CSS RESET & NORMALIZE
------------------- */
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #fff;
  color: #1d2d44;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #244265;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.5em;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  height: 1px;
  background: #e0e7ef;
  margin: 24px 0;
}


/* ------------------
   1. VIBRANT ENERGETIC COLOR PALETTE
------------------- */
:root {
  --color-primary: #244265;
  --color-secondary: #8DC9BB;
  --color-accent: #F7F8F3;
  --color-electric: #FFB100;
  --color-electric2: #F64747;
  --color-blue: #244265;
  --color-offwhite: #F7F8F3;
  --color-dark: #14213d;
  --color-gray: #dadada;
  --color-shadow: rgba(36,66,101,0.12);
}

body {
  background: var(--color-offwhite);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--color-primary);
  letter-spacing: -1px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
p, li, span {
  font-size: 1rem;
  line-height: 1.6;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* ------------------
   2. HEADER & NAVIGATION
------------------- */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px var(--color-shadow);
  z-index: 20;
  position: sticky;
  top: 0;
}
.logo-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 70px;
  gap: 16px;
}
header .logo-nav-wrapper > a img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background .16s, color .16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.cta-btn {
  background: linear-gradient(90deg, var(--color-electric) 60%, var(--color-secondary) 100%);
  color: #fff !important;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 11px 30px;
  border-radius: 30px;
  margin-left: 36px;
  box-shadow: 0 4px 20px 0 var(--color-shadow);
  letter-spacing: 0.03em;
  transition: filter 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  filter: brightness(1.08) saturate(1.1);
  box-shadow: 0 6px 24px 0 var(--color-secondary);
  background: linear-gradient(90deg, var(--color-electric2) 40%, var(--color-secondary) 100%);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-electric);
  color: #fff;
  font-size: 1.85rem;
  border-radius: 10px;
  padding: 3px 16px 2px 16px;
  align-self: center;
  margin-left: 24px;
  border: none;
  transition: background .18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover {
  background: var(--color-electric2);
}

/* ------------------
   3. MOBILE MENU OVERLAY
------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 6px 32px 0 var(--color-shadow);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.62,.04,.31,1.14);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--color-electric2);
  background: none;
  font-size: 2.1rem;
  padding: 10px 22px 0px 10px;
  margin-top: 12px;
  align-self: flex-end;
  border-radius: 10px;
  z-index: 1202;
  transition: background .13s;
}
.mobile-menu-close:hover {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 95vw;
  padding: 36px 24px 0 32px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: var(--color-primary);
  padding: 14px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #ebeef4;
  transition: color .18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-electric2);
}

/* Hide desktop main nav & show burger on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .logo-nav-wrapper > a img {
    width: 106px;
  }
  .logo-nav-wrapper {
    padding: 0 7px;
  }
}

/* ------------------
   4. HERO (BOLD STYLE)
------------------- */
.hero {
  background: linear-gradient(90deg, var(--color-secondary) 0 20%, var(--color-electric) 100%);
  color: var(--color-dark);
  box-shadow: 0 8px 28px var(--color-shadow);
  padding: 48px 0 0 0;
  margin-bottom: 40px;
  border-radius: 0 0 42px 0;
}
.hero .container {
  padding-top: 11px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: var(--color-dark);
  font-size: 2.65rem;
  font-family: 'Lora', serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.hero p {
  color: var(--color-dark);
  font-size: 1.22rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-left: 0;
  font-size: 1.17rem;
  background: linear-gradient(90deg, var(--color-electric2) 40%, var(--color-secondary) 100%);
}
.hero .cta-btn:hover {
  filter: brightness(1.11);
  background: linear-gradient(90deg, var(--color-secondary) 40%, var(--color-electric2) 100%);
}

/* ------------------
   5. FLEX SECTIONS & PATTERNS
------------------- */
.features {
  background: #fff;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  border-radius: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 28px 24px 20px 24px;
  flex: 1 0 225px;
  min-width: 225px;
  max-width: 310px;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  border-left: 6px solid var(--color-electric);
  position: relative;
}
.feature-item img {
  width: 40px; height: 40px;
  margin-bottom: -5px;
}
.feature-item strong {
  margin-top: 6px;
  color: var(--color-electric2);
  font-size: 1.09rem;
  font-weight: bold;
}
.feature-item:hover {
  box-shadow: 0 10px 28px 0 var(--color-secondary);
  transform: translateY(-5px) scale(1.035);
  border-left: 7px solid var(--color-electric2);
}

/* Cards, articles, testimonials */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: box-shadow .15s;
}
.card:hover {
  box-shadow: 0 4px 22px var(--color-shadow);
}
.article-list, .article-list-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.article-preview {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 28px 22px 20px 22px;
  min-width: 230px;
  max-width: 355px;
  flex: 1 0 230px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  border-left: 5px solid var(--color-electric2);
  transition: box-shadow 0.16s, border .14s;
}
.article-preview h3 {
  color: var(--color-primary);
}
.article-preview .category-tag {
  display: inline-block;
  color: #fff;
  background: var(--color-electric2);
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 3px 13px;
  margin-bottom: 9px;
}
.article-preview .read-more-btn {
  color: #fff;
  background: var(--color-blue);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 24px;
  margin-top: 8px;
  align-self: flex-start;
  transition: background 0.17s, box-shadow 0.19s;
  box-shadow: 0 1px 4px var(--color-shadow);
  text-align: center;
}
.article-preview .read-more-btn:hover {
  background: var(--color-electric);
  box-shadow: 0 2px 10px var(--color-electric2);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.value-item {
  background: var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 20px 18px 18px 18px;
  min-width: 170px;
  max-width: 300px;
  flex: 1 0 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-secondary);
}
.value-item img {
  width: 36px;
  margin-bottom: 5px;
}

.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 660px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 6px;
  padding-left: 16px;
  font-size: 1rem;
  color: var(--color-dark);
}
.text-section li {
  margin-bottom: 6px;
  list-style: disc;
}

.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;
}

/* Direct contact + address info rows */
.direct-contact, .address-info, .open-hours {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.direct-contact img, .address-info img, .open-hours img {
  width: 30px; height: 30px;
  margin-right: 0;
}
.direct-contact span, .address-info span, .open-hours span {
  font-size: 1.09rem;
  color: var(--color-dark);
  font-weight: 600;
}
.geo-info a {
  color: var(--color-electric2);
  font-weight: bold;
  border-bottom: 1.5px dotted var(--color-electric2);
  transition: color .16s;
}
.geo-info a:hover {
  color: var(--color-electric);
}

/* ------------------
   6. TESTIMONIALS
------------------- */
.testimonials, .testimonials-detail {
  background: var(--color-accent);
  border-radius: 18px;
  margin-bottom: 48px;
}
.testimonials .content-wrapper, .testimonials-detail .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch !important;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  min-width: 230px;
  max-width: 390px;
  flex: 1 0 230px;
  border-left: 7px solid var(--color-secondary);
  transition: box-shadow 0.18s, border .17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-secondary);
  border-left: 7px solid var(--color-electric2);
}
.testimonial-card p {
  color: #131313;
  font-size: 1.11rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-author {
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .02em;
}
.rating {
  font-size: 1.24rem;
  color: var(--color-electric);
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.09em;
}

/* ------------------
   7. FOOTER
------------------- */
footer {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 0;
  margin-top: 64px;
  box-shadow: 0 -2px 12px var(--color-shadow);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 18px 40px 18px;
}
.footer-logo-social img {
  width: 54px; height: auto;
  margin-bottom: 18px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.15s;
  border-radius: 3px;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--color-electric2);
}
.footer-address {
  font-size: .98rem;
  color: #e7f2f6;
  margin-top: 18px;
  line-height: 1.7;
  max-width: 260px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ------------------
   8. LEGAL & COOKIE BANNER
------------------- */
.legal-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 38px 20px;
  margin-bottom: 46px;
}
.legal-section .content-wrapper {
  gap: 18px;
}
.legal-section h1, .legal-section h2 {
  color: var(--color-electric2);
}

/* COOKIE CONSENT */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-dark);
  z-index: 1300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 18px var(--color-shadow);
  border-top: 2px solid var(--color-secondary);
  padding: 17px 10vw 17px 8vw;
  font-size: 1rem;
  animation: cookieFadeIn .7s cubic-bezier(.4,1.14,.4,1.01);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-consent-banner button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 5px var(--color-shadow);
  transition: background 0.17s, color .12s;
}
.cookie-consent-banner .accept {
  background: var(--color-electric);
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: var(--color-electric2);
}
.cookie-consent-banner .reject {
  background: #e6e6e6;
  color: #444;
}
.cookie-consent-banner .reject:hover {
  background: #e87373;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: var(--color-secondary);
  color: var(--color-dark);
}
.cookie-consent-banner .settings:hover {
  background: var(--color-electric2);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 410px;
  background: #fff;
  color: #1c1c1c;
  z-index: 1390;
  border-radius: 20px;
  box-shadow: 0 12px 48px var(--color-shadow);
  transform: translate(-50%, -50%) scale(1.03);
  opacity: 0;
  pointer-events: none;
  padding: 35px 26px 28px 26px;
  animation: cookieModalShow 0.37s .07s cubic-bezier(.62,.04,.31,1.14) forwards;
}
@keyframes cookieModalShow {
  from {
    transform: translate(-50%, -40%) scale(.97);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 1;
  }
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.37rem;
  color: var(--color-primary);
  margin-bottom: 13px;
  text-align: left;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.cookie-modal li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  font-size: 1.01rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .close-modal {
  background: #e9e9e9;
  color: #303030;
  font-size: .94rem;
  padding: 6px 16px;
  border-radius: 10px;
}
.cookie-modal .save {
  background: var(--color-electric2);
  color: #fff;
  font-size: .97rem;
  padding: 7px 20px;
  border-radius: 12px;
}
.cookie-modal .save:hover {
  background: var(--color-electric);
}

/* Overlay behind modal */
.cookie-modal-backdrop {
  position:fixed;
  z-index:1380;
  left:0;top:0;
  width:100vw;
  height:100vh;
  background:rgba(21,33,61,0.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .13s;
}
.cookie-modal.open ~ .cookie-modal-backdrop {
  opacity:1;
  pointer-events:auto;
}

/* ------------------
   9. UTILS & RESPONSIVE
------------------- */
.section, .legal-section, .contact-details, .location-info {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.content-grid, .article-list, .feature-grid, .value-list, .footer-main, .card-container {
  gap: 20px !important;
}
.card, .feature-item, .article-preview, .testimonial-card, .value-item {
  margin-bottom: 20px !important;
}
.text-image-section {
  gap: 30px !important;
}

/* Animations and microinteractions */
.feature-item, .article-preview, .testimonial-card, .card {
  transition: box-shadow .19s, transform .17s, border .14s;
}

/* Category filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 7px;
}
.filter {
  background: var(--color-electric2);
  color: #fff;
  border-radius: 13px;
  padding: 7px 20px;
  font-size: 1.08rem;
  font-weight: 600;
  transition: background .17s, color .17s;
  cursor: pointer;
}
.filter:hover {
  background: var(--color-secondary);
  color: #1a1a1a;
}

/* Confirmation section for thank you page */
.confirmation-section {
  background: var(--color-accent);
  box-shadow: 0 1px 7px var(--color-shadow);
  border-radius: 18px;
  padding: 40px 20px;
}
.confirmation-section h1 {
  color: var(--color-electric2);
  font-size: 2rem;
}
.next-steps {
  font-size: 1.09rem;
  margin: 16px 0 0 0;
  color: var(--color-dark);
}

/* Responsive layout */
@media (max-width: 1200px) {
  .container, .footer-main {
    max-width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .article-list, .value-list, .card-container, .content-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px !important;
  }
  .feature-item, .article-preview, .testimonial-card, .value-item {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
@media (max-width: 768px) {
  .logo-nav-wrapper,
  .content-wrapper,
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav, .footer-nav, .footer-legal {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .hero h1 { font-size: 2.05rem; }
  h2 { font-size: 1.5rem; }
  h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero,
  .section, .legal-section, .confirmation-section {
    padding: 21px 4px !important;
    border-radius: 13px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
    font-size: .98rem;
    padding-left: 3vw;
    padding-right: 3vw;
  }
}


/* Shadows and micro transitions for all interactive elements */
.button,
.cta-btn,
.card,
.feature-item,
.article-preview,
.value-item,
.testimonial-card {
  transition: box-shadow .19s, transform .13s, background .12s;
}
.cta-btn:active, .button:active {
  transform: scale(.97);
}

/* Hide outline on mouse, show on keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}


/* --------------
   PRINT/ACCESSIBILITY
--------------- */
@media print {
  .mobile-menu,.main-nav,.footer-main,.cookie-consent-banner { display: none !important; }
}

/*
 * END
 */