/* CSS RESET & BASE TYPOGRAPHY */
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, 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;
}
html {
  font-size: 100%;
}
body {
  line-height: 1.5;
  color: #234;
  background: #F7F7F7;
  font-family: 'Roboto', serif;
  font-weight: 400;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23527C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E89D2E;
  text-decoration: none;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}
blockquote {
  font-style: italic;
  background: #ececec;
  border-left: 4px solid #E89D2E;
  padding: 16px 18px;
  margin: 20px 0;
  border-radius: 8px;
  font-family: 'Montserrat', serif;
  color: #333;
}

/* BASE TYPOGRAPHY HIERARCHY */
h1 {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: #23527C;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #234;
}
h3 {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #23527C;
}
h4, h5, h6 {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  color: #335;
}
p, address {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* BRAND COLORS & ELEGANT CLASSIC PALETTE */
:root {
  --primary: #23527C;
  --secondary: #E89D2E;
  --accent: #F7F7F7;
  --surface: #fff;
  --text: #22242a;
  --gray-light: #ececec;
  --gray-medium: #b9bec4;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 700px;
}

/* Logo, Header & Navigation */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 0;
  position: relative;
  z-index: 40;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0 8px 0;
}
.logo-row img {
  display: block;
  height: 45px;
  width: auto;
}
.tagline {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  font-weight: 500;
}
.desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0 0 10px 0;
  font-family: 'Montserrat', serif;
  font-size: 1.03rem;
}
.desktop-nav a {
  color: #23527C;
  text-decoration: none;
  padding: 5px 0 4px 0;
  position: relative;
  transition: color 0.2s;
}
.desktop-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #E89D2E;
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 2px;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #E89D2E;
}
.desktop-nav a:hover::after, .desktop-nav a:focus::after {
  width: 80%;
}
.cta-btn {
  display: inline-block;
  padding: 0.7em 2.1em;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.1rem;
  background: #E89D2E;
  color: #fff;
  border-radius: 26px;
  text-decoration: none;
  margin-left: 18px;
  margin-top: 10px;
  border: none;
  box-shadow: 0 4px 16px -8px #b1a1732b;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #23527C;
  color: #fff;
  box-shadow: 0 4px 16px -8px #23527C44;
}

/* MOBILE MENU - Burger Button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #E89D2E;
  color: #E89D2E;
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 18px;
  margin-right: 0;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E89D2E;
  color: #fff;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 30px #1111;
  padding: 0;
  z-index: 200;
  transform: translateX(-102%);
  transition: transform 0.35s cubic-bezier(0.87,0,0.13,1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 0 0;
  background: #fff;
  border: 2px solid #E89D2E;
  color: #E89D2E;
  font-size: 1.8rem;
  border-radius: 6px;
  padding: 2px 14px 6px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E89D2E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 50px 0 0 56px;
  font-family: 'Montserrat', serif;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
  min-width: 180px;
  min-height: 36px;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F7F7;
  color: #E89D2E;
}

@media (max-width: 1025px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .logo-row {
    padding: 14px 0 6px 0;
  }
  .desktop-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO & BANNER */
.hero {
  background: var(--surface);
  padding: 56px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.hero p {
  font-size: 1.13rem;
  color: #3a3a38;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/******* FLEX SPACING & LAYOUTS *********/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 3px 12px 0 #23384a13;
  position: relative;
  padding: 24px 28px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px #22345121;
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 8px 0 #19234016;
  padding: 20px;
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto 20px auto;
  color: #1e2530;
  font-size: 1.12rem;
}
.testimonial-card p {
  margin-bottom: 0;
  flex: 1 1 auto;
}
.testimonial-card span {
  flex-shrink: 0;
  font-weight: 500;
  color: #23527c;
  font-size: 1rem;
  margin-left: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 700px) {
  .section {
    padding: 24px 7px;
  }
  .card {
    padding: 16px 10px;
  }
  .content-grid, .card-container, .feature-grid, .blog-preview-list {
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}

/****** FEATURES + ICON BLOCKS *****/
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 10px #28506b1b;
  padding: 28px 20px;
  flex: 1 1 240px;
  min-width: 218px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, background 0.3s;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.18rem;
}
.feature:hover, .feature:focus-within {
  background: #F7F7F7;
  box-shadow: 0 7px 25px #19384f16;
}

/**** BLOG ARTICLE LIST *****/
.blog-list, .blog-preview-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-preview-list {
  gap: 22px;
}
.blog-preview-list article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #2d465316;
  padding: 20px 24px;
  color: #232332;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.18s, background 0.2s;
}
.blog-preview-list article:hover, .blog-preview-list article:focus-within {
  background: #F7F7F7;
  box-shadow: 0 7px 27px #1945670c;
}
.blog-preview-list article h3 {
  font-size: 1.13rem;
  color: #23527C;
}
.blog-preview-list article span {
  color: #bbb;
  font-size: 0.99rem;
  font-family: 'Roboto', serif;
  margin-top: 5px;
}

/******* USP SECTIONS & CATEGORY LISTS *******/
.usp, .usp-trust, .categories, .callout-event-tip {
  background: #FFF;
  box-shadow: 0 1px 8px #315a8222;
  border-radius: 12px;
}
.usp ul, .usp-trust ul, .categories ul, .activity-list ul {
  padding-left: 26px;
  margin-top: 4px;
}
.usp li, .usp-trust li, .categories li {
  color: #2d3c4e;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.categories ul li a {
  color: #23527C;
  font-weight: 500;
}
.categories ul li a:hover {
  color: #E89D2E;
}

/******* ACTIVITY & BLOG FILTERS ********/
.activity-list, .activity-filter-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.activity-list .activity-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 10px #13274618;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  transition: box-shadow 0.19s, background 0.19s;
}
.activity-list .activity-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
.activity-list .activity-item span {
  font-size: 0.97rem;
  color: #666;
}
.activity-list .activity-item:hover {
  background: #f3f5f8;
  box-shadow: 0 8px 34px #29455714;
}

.activity-filter-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
.activity-filter-list ul li {
  background: #ececec;
  color: #234;
  font-weight: 500;
  border-radius: 7px;
  padding: 4px 12px;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.activity-list ul {
  margin-bottom: 12px;
}

/******* CTA BANNER ***********/
.cta-banner {
  background: #E89D2E;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px #e89d2e13;
  text-align: center;
  margin-top: 24px;
}
.cta-banner .cta-btn {
  background: #fff;
  color: #E89D2E;
  margin-left: 0;
  margin-top: 20px;
  font-size: 1.18rem;
  border: 2px solid #fff;
  box-shadow: none;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #23527C;
  color: #fff;
  border-color: #23527C;
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}

/******* MAP & CONTACT DETAILS ******/
.contact-info-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px #2234511c;
  margin-top: 14px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.contact-details ul {
  margin-bottom: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #194e77;
  font-size: 1.08rem;
}
.contact-details img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0f2f7;
  border-radius: 9px;
  padding: 18px 14px;
  margin-top: 12px;
}
.map-placeholder img {
  width: 70px;
  height: 70px;
}

/******* FOOTER *******/
footer {
  background: #234;
  color: #fff;
  padding: 30px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px 18px 18px;
  border-bottom: 1px solid #435566;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav nav a {
  color: #e6eaf1;
  text-decoration: underline;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-nav nav a:hover {
  color: #E89D2E;
}
.footer-bottom {
  text-align: center;
  font-size: 0.98rem;
  color: #aeb7c2;
  padding: 16px 0 10px 0;
}
footer address {
  font-style: normal;
  color: #c6cddb;
  line-height: 1.7;
  margin-top: 0;
}
footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
footer a:hover {
  color: #E89D2E;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 850px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-info {
    align-items: flex-start;
    margin-top: 12px;
  }
}

/****** LEGAL PAGES ******/
.legal-section {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1px 12px #2b425019;
  margin: 30px 0 20px 0;
  padding: 32px 14px;
}

/******* THANK YOU PAGE ******/
.thankyou-section {
  background: #fdf6e3;
  border-radius: 13px;
  box-shadow: 0 1px 16px #eec56e22;
  margin-bottom: 40px;
  text-align: center;
  padding: 50px 18px;
}

/********* COOKIE CONSENT BANNER & MODAL ********/ 
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdfa;
  border-top: 1px solid #E89D2E;
  box-shadow: 0 -6px 32px #DA9F3621;
  z-index: 4000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px 18px 18px;
  font-size: 1.01rem;
  color: #184364;
  animation: cookieAppear 0.65s cubic-bezier(0.32,1.16,0.45,1) 1;
}
@keyframes cookieAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-banner-btn, .cookie-banner-settings-btn {
  font-family: 'Montserrat', serif;
  background: #E89D2E;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1.04rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  box-shadow: 0 2px 8px #eac5541b;
}
.cookie-banner-btn.reject {
  background: #D6D3CC;
  color: #2a2a28;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus, .cookie-banner-settings-btn:hover, .cookie-banner-settings-btn:focus {
  background: #23527C;
  color: #fff;
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,44,54,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open { visibility: visible; opacity: 1; pointer-events: all; }
.cookie-modal .cookie-modal-content {
  background: #fffdfa;
  border-radius: 15px;
  box-shadow: 0 8px 42px #18436433;
  max-width: 420px;
  width: 93vw;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalSlide 0.45s cubic-bezier(0.61, 0.01, 0.26, 1) 1;
}
@keyframes modalSlide {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #E89D2E;
  font-size: 1.9rem;
  align-self: flex-end;
  margin-top: -22px;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #23527C; }
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: #234;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E89D2E;
  width: 19px;
  height: 19px;
  margin-right: 6px;
}
.cookie-modal .essential {
  color: #90908a;
  font-size: 0.99rem;
  font-style: italic;
  margin-left: 5px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .cookie-banner-btn {
  flex: 1;
}

/*********** RESPONSIVE TWEAKS ***********/
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    padding: 16px 7px 12px 10px;
  }
  .footer-nav nav {
    gap: 10px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-banner-btns {
    gap: 7px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 20px 10px 10px 10px;
    max-width: 96vw;
  }
}
@media (max-width: 461px) {
  .tagline { font-size: 0.95rem; }
  .logo-row img { height: 35px; }
  .mobile-nav { margin: 45px 0 0 18px; }
}

/* ELEGANT CLASSIC DETAILS */
.card, .feature, .testimonial-card, .usp, .usp-trust, .categories, .callout-event-tip, .blog-preview-list article {
  border-radius: 14px;
}
.section {
  background: #faf8f5;
}
.card, .feature, .testimonial-card, .usp, .usp-trust, .categories, .callout-event-tip {
  border: 1px solid #e5e0d9;
}
h1, h2, h3, .tagline { font-family: 'Montserrat', serif; }
p, ul, li, address, span, blockquote { font-family: 'Roboto', serif; }

/* INPUTS and FORMS (if ever used) */
input, textarea, select {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  border: 1px solid #dadada;
  border-radius: 12px;
  padding: 9px 12px;
  background: #f7f7f7;
  transition: border 0.18s;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px #1b224218;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #23527C;
  background: #fff;
  outline: none;
}
button, .cta-btn, .cookie-banner-btn, .cookie-banner-settings-btn {
  cursor: pointer;
  outline: none;
}

/* MISC FIXES for Blog Filters, Notes, Placeholders */
.blog-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 6px;
}
.blog-filter li {
  background: #ececec;
  color: #23527C;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.note {
  background: #f8ebd7;
  color: #85531b;
  padding: 13px 16px;
  border-radius: 9px;
  margin: 16px 0;
  font-size: 1.03rem;
}

/* UTILITY CLASSES & ENSURE GAPS */
.mt-24 { margin-top: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }

/* NO GRID/NO COLUMNS - ALL FLEX */
/* Verified: display: flex is used everywhere for content grids/splits */