/* 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #223159;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
}
a {
  color: #223159;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C94C;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, .btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 2px 8px rgba(34,49,89,0.08);
  margin: 8px 8px 8px 0;
}
.btn-primary {
  background: #F2C94C;
  color: #223159;
  border: 2px solid #F2C94C;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #223159;
  color: #F2C94C;
  border: 2px solid #223159;
  box-shadow: 0 4px 16px rgba(34,49,89,0.14);
}
.btn-secondary {
  background: #223159;
  color: #fff;
  border: 2px solid #223159;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #4E6988;
  border-color: #4E6988;
  color: #fff;
}
.btn {
  background: #fff;
  color: #223159;
  border: 2px solid #223159;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn:hover, .btn:focus {
  background: #F2C94C;
  color: #223159;
  border-color: #F2C94C;
}
/* Typography Hierarchy */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #223159;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #223159;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #223159;
  line-height: 1.18;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #223159;
  line-height: 1.22;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #223159;
}
strong {
  font-weight: 700;
  color: #223159;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px rgba(34,49,89,0.04);
}
.container {
  max-width: 1270px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-grid, .service-cards, .team-section, .category-list, .guide-cards, .blog-cards, .testimonial-slider, .testimonial-grid, .success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid {
  gap: 32px;
}
.service-cards, .guide-cards, .blog-cards, .testimonial-slider, .testimonial-grid {
  gap: 24px;
}
.team-section {
  gap: 32px;
}
.category-list {
  gap: 20px;
}
.success-stories {
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,49,89,0.05);
  overflow: hidden;
}
.feature-item, .service-card, .team-profile, .category-item, .guide-card, .blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,49,89, 0.07);
  padding: 32px 24px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover, .service-card:hover, .team-profile:hover, .guide-card:hover, .blog-card:hover {
  box-shadow: 0 8px 18px rgba(34,49,89,0.14);
  transform: translateY(-3px) scale(1.03);
}
.service-card img, .feature-item img, .category-item img, .team-profile img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.category-item {
  align-items: center;
  padding: 24px 12px;
  background: #223159;
  color: #fff;
  border-radius: 18px;
  min-width: 144px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  justify-content: center;
  text-align: center;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.category-item span {
  color: #F2C94C;
}
.category-item:hover, .category-item:focus {
  background: #F2C94C;
  color: #223159;
}
.guide-card a, .blog-card a {
  color: #223159;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  padding-top: 8px;
  transition: color 0.18s;
}
.guide-card a:hover, .blog-card a:hover { color: #F2C94C; }

/* Testimonial Cards */
.testimonial-slider, .testimonial-grid, .success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  background: #F9FAFB;
  color: #223159;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,49,89,0.11);
  min-width: 260px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(34,49,89,0.14);
  transform: translateY(-3px) scale(1.03);
}
.customer-name {
  display: block;
  margin-top: 4px;
  font-size: 0.96rem;
  color: #4E6988;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Awards/Rating Stars */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.awards {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.award-badge {
  display: flex;
  align-items: center;
  background: #fffbe3;
  border-radius: 14px;
  padding: 10px 16px;
  gap: 10px;
  font-size: 1rem;
  color: #223159;
  font-weight: 700;
  border: 2px solid #F2C94C;
}
.award-badge img {
  width: 28px;
  height: 28px;
}

/* Section Content Grids */
.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;
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
  background: #223159;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 0;
  letter-spacing: 0.01em;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #4E6988;
}
.footer-main > * {
  flex: 1 1 190px;
  min-width: 180px;
  margin-bottom: 24px;
}
.footer-main a, .footer-main p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .legal-nav a {
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #F2C94C;
}
.legal-nav {
  margin-top: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: brightness(1.1);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: brightness(1.5);
}
.footer-bottom {
  text-align: left;
  font-size: 0.94rem;
  color: #fff;
  margin-top: 20px;
  padding-bottom: 24px;
}

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(34,49,89,0.05);
  position: relative;
  z-index: 100;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: space-between;
}
header a img {
  height: 44px;
  display: block;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}
header nav a {
  color: #223159;
  position: relative;
  transition: color 0.2s;
  padding: 6px 4px 6px 4px;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  color: #F2C94C;
  background: #22315910;
}
header .btn-primary {
  margin-left: auto;
}

/* Hamburger Menu (Mobile) */
.mobile-menu-toggle {
  background: #F2C94C;
  color: #223159;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 124;
  border: 2px solid #4E6988;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #223159;
  color: #F2C94C;
  border-color: #223159;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,89,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: #F2C94C;
  color: #223159;
  border-radius: 50%;
  border: 2px solid #4E6988;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1210;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #223159;
  color: #F2C94C;
  border-color: #223159;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 34px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #F2C94C;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 10px;
  padding: 12px 8px;
  transition: background 0.15s, color 0.16s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #223159;
}
/* Show/hide desktop nav/mobile menu */
@media (max-width: 1024px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #223159;
  color: #fff;
  z-index: 30000;
  box-shadow: 0 -4px 18px rgba(34,49,89,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.35s, opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-message {
  flex: 3 1 270px;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner .btn {
  min-width: 130px;
  border-radius: 8px;
  background: #fff;
  color: #223159;
  border: 2px solid #F2C94C;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: #F2C94C;
  color: #223159;
  border-color: #223159;
}
.cookie-banner .btn.cookie-settings {
  background: #F2C94C;
  color: #223159;
  border: 2px solid #F2C94C;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  min-width: 360px;
  max-width: 94vw;
  width: 470px;
  background: #fff;
  color: #223159;
  z-index: 40000;
  box-shadow: 0 -18px 44px rgba(34,49,89,0.23);
  border-radius: 20px 20px 0 0;
  padding: 36px 26px 32px 26px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s, opacity 0.34s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}
.cookie-modal h2 {
  font-size: 1.44rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.04rem;
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F2C94C;
}
.cookie-category input[disabled] {
  filter: grayscale(1) brightness(0.8);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  background: #223159;
  color: #fff;
  border: 2px solid #223159;
  font-weight: 700;
}
.cookie-modal .btn:hover {
  background: #F2C94C;
  color: #223159;
  border-color: #F2C94C;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #F9FAFB;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(34,49,89, 0.07);
}
/* Contact Details and Map */
.contact-details,
.map-location {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.contact-details img,
.map-location img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.map-location {
  align-items: flex-start;
  background: #F9FAFB;
  border-radius: 14px;
  padding: 18px 17px;
}

/* Service List / Ordered Lists */
.service-list li {
  margin-bottom: 22px;
  font-size: 1.11rem;
  font-weight: 700;
  color: #223159;
  padding-left: 12px;
}
.service-list h2 {
  font-size: 1.34rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #223159;
}
.service-list p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 6px;
}

ol {
  padding: 0 0 0 28px;
  margin-bottom: 18px;
}
ol li {
  margin-bottom: 13px;
  color: #223159;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}
ol li strong {
  color: #F2C94C;
}
ol li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 7px;
}

.certifications {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.certifications img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fffbe3;
  padding: 8px;
}

/* Category Filter */
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 24px 0;
}
.categories-filter a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  padding: 9px 22px;
  letter-spacing: 0.02em;
  background: #F9FAFB;
  color: #4E6988;
  border: 1.7px solid #4E6988;
  transition: background 0.13s, color 0.14s, border 0.15s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #F2C94C;
  color: #223159;
  border-color: #F2C94C;
}

/* Responsive Design & Flexbox */
@media (max-width: 1100px) {
  .footer-main {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-main > * {
    min-width: 148px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 830px) {
  h1, .h1 {
    font-size: 2.1rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 10px;
    border-radius: 14px;
  }
  .feature-item, .service-card, .team-profile, .category-item, .guide-card, .blog-card {
    padding: 20px 12px;
    border-radius: 12px;
  }
  .testimonial-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
}
@media (max-width: 700px) {
  .features-grid, .service-cards, .team-section, .category-list, .guide-cards, .blog-cards, .testimonial-slider, .testimonial-grid, .success-stories {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .footer-main {
    gap: 14px;
  }
  .cookie-modal {
    width: 99vw;
    min-width: unset;
    padding: 24px 8px 18px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1, .h1 { font-size: 1.34rem; }
  h2, .h2 { font-size: 1.04rem; }
  .footer-main {
    flex-direction: column;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px 4px 12px 4px;
  }
  .cookie-banner .cookie-btns {
    gap: 7px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Subtle Animations */
.section, .feature-item, .service-card, .testimonial-card, .card, .guide-card, .blog-card {
  transition: box-shadow 0.18s, transform 0.16s;
}
.btn, .btn-primary, .btn-secondary {
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.16s;
}

/* Subtle geometric accents ("modern_bold") */
.section {
  position: relative;
  overflow: visible;
}
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -36px; right: -36px;
  width: 88px;
  height: 88px;
  background: #F2C94C;
  opacity: 0.12;
  border-radius: 24px 0 44px 0;
  z-index: 1;
  pointer-events: none;
}
.feature-item::after, .service-card::after {
  content: "";
  position: absolute;
  bottom: -16px; left: -16px;
  width: 34px; height: 34px;
  background: #4E6988;
  opacity: 0.09;
  border-radius: 11px 22px 18px 6px;
  z-index: 0;
  pointer-events: none;
}
/* Remove accent shapes on xs screens */
@media (max-width: 540px) {
  .section::before {
    display: none;
  }
  .feature-item::after, .service-card::after {
    display: none;
  }
}

/* Code & Pre Format (Optional) */
pre, code {
  font-family: 'Source Code Pro', monospace;
  background: #F9FAFB;
  border-radius: 7px;
  padding: 4px 7px;
  font-size: 0.96em;
}

/* Accessibility & Focus States */
a:focus, button:focus, .btn:focus {
  outline: 2px dashed #F2C94C;
  outline-offset: 2px;
  z-index: 3;
}

/* END OF STYLE.CSS */