/* 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, main, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  background: #F1F5F9;
  color: #163047;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  position: relative;
}
a {
  color: #163047;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E1AB74;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1.5em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  color: #163047;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  color: #E1AB74;
  line-height: 1.1;
}
h3 {
  font-size: 1.3rem;
  color: #163047;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 800;
}
p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* HEADER & NAVIGATION */
header {
  background: #163047;
  box-shadow: 0 2px 24px rgba(22,48,71, 0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 42px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
}
.main-nav a {
  color: #F1F5F9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E1AB74;
}
.main-nav .cta {
  background: #E1AB74;
  color: #163047;
  border-radius: 32px;
  padding: 8px 32px;
  margin-left: 4px;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 2px 16px rgba(225, 171, 116, 0.17);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: #fff;
  color: #E1AB74;
  box-shadow: 0 4px 24px rgba(225, 171, 116, 0.22);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: none;
  cursor: pointer;
  padding: 6px 16px;
  transition: color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #E1AB74;
}
/* Hamburger shown on mobile */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 200;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #163047;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.5,1,.3,1);
  box-shadow: 0 8px 48px rgba(22,48,71,.38);
  padding: 0 24px 40px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 28px;
  background: none;
  border: none;
  color: #E1AB74;
  font-size: 2.5rem;
  align-self: flex-end;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover{ color:#fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 12px 12px 12px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E1AB74;
  background: rgba(255,255,255,0.03);
}

/* LAYOUTS & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(22,48,71, 0.09);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 56px rgba(225, 171, 116, 0.13), 0 4px 32px rgba(22,48,71,.15);
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 8px solid #E1AB74;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(22,48,71,0.07);
  max-width: 720px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(225,171,116,0.13),0 3px 16px rgba(22,48,71,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS & CTA */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E1AB74;
  color: #163047;
  border: none;
  border-radius: 40px;
  padding: 12px 40px;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 16px rgba(225,171,116,.09);
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.11s;
  display: inline-block;
  position: relative;
  outline: none;
  text-align: center;
}
.cta:active {
  transform: translateY(1px) scale(.98);
}
.cta.secondary {
  background: #163047;
  color: #F1F5F9;
  border: 2px solid #E1AB74;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E1AB74;
  color: #163047;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: #E1AB74;
  box-shadow: 0 4px 40px rgba(225,171,116,0.18);
}

/* FEATURE GRID & SERVICE LIST */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 2px 18px rgba(22,48,71,0.09);
  max-width: 320px;
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, border-color 0.2s;
  border-left: 5px solid #E1AB74;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 36px rgba(225,171,116,0.11),0 3px 14px rgba(22,48,71,0.17);
  border-left: 5px solid #163047;
}
.feature-grid img {
  width: 48px;
  margin-bottom: 12px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list > div, .service-list > li {
  flex: 1 1 210px;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(22,48,71,0.09);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  transition: box-shadow 0.16s;
}
.service-list > div:hover, .service-list > li:hover {
  box-shadow: 0 7px 32px rgba(225,171,116,0.12),0 2px 12px rgba(22,48,71,0.15);
}
.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.story-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(22,48,71,0.09);
  padding: 24px 20px;
  flex: 1 1 255px;
  min-width: 220px;
  margin-bottom: 6px;
  transition: box-shadow 0.15s;
}
.story-list > div:hover {
  box-shadow: 0 6px 28px rgba(225,171,116,0.13),0 2px 12px rgba(22,48,71,0.11);
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.contact-details ul {
  min-width: 230px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.contact-details ul li img {
  width: 28px;
  height: 28px;
}
.map-embed {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(22,48,71,0.05);
  padding: 22px 18px;
  font-size: 1rem;
}

/* BLOG & CATEGORY STYLES */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.blog-list > div {
  background: #fff;
  border-radius: 16px;
  flex: 1 1 230px;
  min-width: 200px;
  box-shadow: 0 2px 14px rgba(22,48,71,0.07);
  padding: 22px 18px 32px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
  transition: box-shadow 0.15s;
}
.blog-list > div:hover {
  box-shadow: 0 7px 32px rgba(225,171,116,0.14),0 2px 14px rgba(22,48,71,0.11);
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 24px;
}
.blog-categories a {
  background: #fff;
  color: #163047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 7px 22px;
  border: 2px solid #E1AB74;
  transition: background 0.2s, border-color 0.22s, color 0.19s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #163047;
  color: #F1F5F9;
  border-color: #163047;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(22,48,71,0.09);
  margin-bottom: 32px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #F1F5F9;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #E1AB74;
  color: #163047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.13rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  margin: 12px 0 0 0;
  font-size: 1.05rem;
  color: #326492;
}

/* FOOTER */
footer {
  background: #163047;
  color: #fff;
  padding: 40px 0 12px 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #E1AB74;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 6px 0;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-logo img {
  max-width: 82px;
  margin-bottom: 6px;
}
.footer-contact p {
  font-size: 1rem;
  color: #F1F5F9;
  text-align: center;
}
.footer-copy span {
  font-size: 0.95rem;
  color: #A0B8D6;
  text-align: center;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4000;
  background: #163047;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 15px 20px 15px;
  box-shadow: 0 -4px 38px rgba(22,48,71,.24);
  border-top: 4px solid #E1AB74;
  animation: cookies-slide-in 0.6s cubic-bezier(.45,1.4,.3,1);
}
@keyframes cookies-slide-in {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: #F1F5F9;
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 410px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  background: #E1AB74;
  color: #163047;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 9px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.21s, color 0.14s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(225,171,116,0.07);
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #163047;
  border: 2px solid #E1AB74;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #E1AB74;
  box-shadow: 0 3px 22px rgba(225,171,116,0.12);
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: #163047;
  color: #fff;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,48,71, 0.73);
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.34s cubic-bezier(.45,1.4,.3,1);
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 46px rgba(22,48,71,0.20), 0 2px 18px rgba(225,171,116,0.07);
  padding: 38px 28px 22px 28px;
  max-width: 420px;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h2 {
  color: #163047;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal-content ul {
  margin: 0 0 8px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category label {
  font-weight: 600;
  font-size: 1.09rem;
  color: #163047;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #E1AB74;
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #163047;
  font-size: 2rem;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  z-index: 1;
  transition: color .18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #E1AB74;
}

/* HERO / SECTION UTILITIES */
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
}
section .container {
  /* Inherit container styles */
}

/* RESPONSIVE & MOBILE STYLES */
@media (max-width: 1023px) {
  .feature-grid {
    gap: 18px;
  }
  .card-container, .service-list, .story-list, .blog-list {
    gap: 16px;
  }
  .content-wrapper {
    max-width: 96vw;
  }
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .card-container, .content-grid, .service-list, .story-list, .blog-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .card, .story-list > div, .feature-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 99vw;
  }
  .testimonial-card {
    max-width: 100vw;
    flex-direction: column;
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .map-embed {
    padding: 12px 8px;
  }
  .cookie-modal-content {
    max-width: 95vw;
    min-width: 0;
    padding: 20px 9px 14px 9px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .footer-contact p, .footer-copy span {
    font-size: 0.85rem;
  }
  .cookie-banner {
    gap: 10px;
    padding: 22px 5px 16px 5px;
  }
  .cookie-banner p {
    max-width: 96vw;
    font-size: 0.95rem;
  }
}

/* Micro-interactions & Accent Effects */
.card, .feature-grid > div, .service-list > div, .story-list > div, .blog-list > div {
  transition: box-shadow 0.16s, transform 0.12s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .story-list > div:hover, .blog-list > div:hover {
  transform: translateY(-2px) scale(1.01);
}

/* Blockquote style within testimonial-card */
.testimonial-card blockquote {
  font-size: 1.11rem;
  color: #163047;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #163047;
  font-size: 1.08rem;
}

/* Misc colors, hr, tables, forms, lists */
hr {
  border: 0;
  height: 1px;
  background: #E1AB74;
  margin: 24px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 10px 8px;
  text-align: left;
}
tr:nth-child(even) td { background: #F1F5F9; }

input, textarea, select {
  border-radius: 6px;
  border: 1.7px solid #E1AB74;
  padding: 10px 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  max-width: 450px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #163047;
  transition: border-color .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #163047;
  outline: none;
}

/* Decorative accent separators (lines, dots etc.) */
.section-title-accent {
  width: 46px;
  height: 5px;
  background: #E1AB74;
  border-radius: 2px;
  margin-bottom: 18px;
  display: block;
}

/* Accent highlight in paragraphs */
.accent {
  color: #E1AB74;
  font-weight: 800;
  font-style: italic;
}

/* Accessibility: force visible focus outlines */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2.5px solid #E1AB74;
  outline-offset: 2px;
  z-index: 10;
}

/* Hide cookie modal and banner by default (toggle via .active class in JS) */
.cookie-banner, .cookie-modal { display: none; }
.cookie-banner.active { display: flex; }
.cookie-modal.active { display: flex; }

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