/* =======================================================
   CSS RESET, NORMALIZE & BASE STYLES FOR MINIMALIST STYLE
   ======================================================= */
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #17375E;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #17375E;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus {
  outline: 2px solid #FF9F40;
  outline-offset: 2px;
}
ul, li {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17375E;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.16; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
strong {
  font-weight: 700;
}
p {
  margin-bottom: 16px;
}
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ===========================
   HEADER & NAVIGATION STYLES
   =========================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,55,94,0.04);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  margin-bottom: 20px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
header img {
  max-height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #17375E;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 6px 0;
  border-radius: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FF9F40;
  background: #E2E7EB;
}
.main-nav .cta-primary {
  background: #17375E;
  color: #fff !important;
  border-radius: 7px;
  padding: 9px 20px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #FF9F40;
  color: #17375E !important;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #17375E;
  cursor: pointer;
  margin-left: 10px;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E2E7EB;
  color: #FF9F40;
  outline: 2px solid #FF9F40;
}
/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 0 28px 4px rgba(24,55,94,0.10);
  z-index: 2500;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.55,0,0.1,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 1;
  /* Hidden by default */
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #17375E;
  margin: 24px 24px 0 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.18s;
  z-index: 1;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E2E7EB;
  color: #FF9F40;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 32px 0 0 0;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #17375E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  width: 100%;
  background: none;
  transition: color 0.22s;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF9F40;
  background: #E2E7EB;
}
/* Hide main-nav and show burger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(23,55,94,0.09);
  padding: 24px 18px 20px 18px;
  border-top: 1px solid #E2E7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s cubic-bezier(.8,.03,.33,1.1), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  color: #17375E;
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 620px;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner-actions button {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 18px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  background: #E2E7EB;
  color: #17375E;
  box-shadow: 0 1px 4px rgba(23, 55, 94, 0.07);
}
.cookie-banner-actions .accept {
  background: #17375E;
  color: #fff;
}
.cookie-banner-actions .accept:hover, .cookie-banner-actions .accept:focus {
  background: #FF9F40;
  color: #17375E;
}
.cookie-banner-actions .reject {
  background: #E2E7EB;
  color: #17375E;
}
.cookie-banner-actions .reject:hover, .cookie-banner-actions .reject:focus {
  background: #fff3e5;
  color: #FF9F40;
}
.cookie-banner-actions .settings {
  background: #fff;
  border: 1px solid #E2E7EB;
  color: #17375E;
}
.cookie-banner-actions .settings:hover, .cookie-banner-actions .settings:focus {
  background: #E2E7EB;
  color: #FF9F40;
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,55,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s, visibility 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(23,55,94,0.13);
  max-width: 420px;
  width: 92vw;
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  color: #17375E;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #17375E;
  width: 18px; height: 18px;
}
.cookie-category span {
  font-size: 1rem;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #17375E;
  cursor: pointer;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #FF9F40;
}
/* =======================
   BASE LAYOUT/SECTIONS
   ======================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
/* Add subtle background for alternate sections (optional)
section:nth-child(even) {
  background: #fafbfc;
}
*/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.text-section {
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
/* =============================
   CARDS & FLEXBLOCK COMPONENTS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23,55,94,0.06);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(23,55,94,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-item, .feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 14px 22px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(23,55,94,0.03);
  margin-bottom: 20px;
  flex: 1 1 210px;
  transition: box-shadow 0.18s;
}
.feature-item:hover, .feature-grid > div:hover, .feature-item:focus-within, .feature-grid > div:focus-within {
  box-shadow: 0 4px 24px 0 rgba(23,55,94,0.09);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
/* =============================
   TESTIMONIALS & CASE STUDIES
   ============================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(23,55,94,0.08);
  margin-bottom: 24px;
  min-width: 230px;
  max-width: 520px;
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  color: #17375E;
  font-style: italic;
  font-size: 1.07rem;
}
.testimonial-card strong {
  color: #17375E;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px 0 rgba(255,159,64,0.11);
}
.case-study {
  background: #fff;
  border-left: 6px solid #FF9F40;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(23,55,94,0.06);
  padding: 22px 26px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.case-study h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #17375E;
  font-size: 1.18rem;
}
.case-study:hover, .case-study:focus-within {
  box-shadow: 0 8px 40px 0 rgba(23,55,94,0.09);
}
/* ===============================================
   BLOG LIST, FAQ, CATEGORY TAGS, OTHER COMPONENTS
   =============================================== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 14px;
}
.blog-list article {
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,55,94,0.04);
  border-radius: 9px;
  padding: 20px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s;
}
.blog-list article:hover, .blog-list article:focus-within {
  box-shadow: 0 4px 16px 0 rgba(23,55,94,0.13);
}
.category-tag {
  display: inline-block;
  background: #E2E7EB;
  color: #17375E;
  border-radius: 13px;
  padding: 5px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: background 0.13s;
}
.category-tag:hover, .category-tag:focus {
  background: #FF9F40;
  color: #17375E;
}
.faq-list > div {
  margin-bottom: 20px;
  padding: 0 2px 2px 2px;
}
.faq-list h3 {
  font-size: 1.07rem;
  color: #17375E;
}
.faq-list p {
  color: #17375E;
  margin-bottom: 0;
}
.location-map {
  background: #E2E7EB;
  border-radius: 11px;
  padding: 22px 20px;
  color: #17375E;
  font-size: 1rem;
  min-height: 68px;
}
.legal-text {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(23,55,94,0.04);
  padding: 36px 22px;
  max-width: 100%;
  color: #17375E;
  font-size: 1rem;
}
.confirmation-message {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 18px 0 rgba(23,55,94,0.09);
  padding: 38px 20px;
  text-align: center;
}
.confirmation-message h1 {
  color: #17375E;
}
.confirmation-message a.cta-primary {
  margin-top: 28px;
}
/* =====================
   BUTTON & INTERACTIONS
   ===================== */
.cta-primary {
  background: #17375E;
  color: #fff !important;
  border-radius: 9px;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .025em;
  box-shadow: 0 1px 5px rgba(23,55,94,0.03);
  border: none;
  display: inline-block;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  margin-top: 8px;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FF9F40;
  color: #17375E !important;
  box-shadow: 0 2px 14px 2px rgba(255,159,64,0.12);
}
/* ===================
   LISTS, TABLES, ETC
   =================== */
ul {
  margin-bottom: 14px;
  padding-left: 22px;
}
ul li {
  list-style: disc;
  color: #17375E;
  margin-bottom: 6px;
  font-size: 1rem;
}
ul li img {
  margin-right: 7px;
  vertical-align: middle;
}
/* ===================
   FOOTER
   =================== */
footer {
  background: #fff;
  box-shadow: 0 -2px 18px rgba(23,55,94,0.04);
  margin-top: 40px;
  padding: 36px 0 20px 0;
  color: #17375E;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 36px;
}
.footer-navigation nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navigation a {
  color: #17375E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #FF9F40;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 310px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E2E7EB;
  transition: background 0.15s;
  padding: 2px;
}
.footer-social a:hover img, .footer-social a:focus img {
  background: #FF9F40;
}
.footer-brand {
  margin-top: 10px;
}
.footer-brand img {
  max-height: 48px;
  width: auto;
}
/* Responsive: let footer stack vertically, items centered on small screens */
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
}
/* ============
   RESPONSIVE
   ============ */
@media (max-width: 820px) {
  .feature-grid {
    flex-direction: column;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 32px 7vw;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 4vw;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .text-image-section, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 15px 14px;
  }
}
@media (max-width: 670px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .card, .feature-item, .feature-grid > div, .case-study {
    padding-left: 10px; padding-right: 10px;
  }
  section { padding: 22px 2vw; }
}
@media (max-width: 480px) {
  .cookie-modal-content { padding: 16px 4vw 18px 4vw; }
}
/* Misc for visually hidden (e.g. aria-live in cookie banner/modal) */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; border: 0; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
/* ====== Animations / Micro-interactions ====== */
.card, .feature-item, .feature-grid > div, .case-study, .testimonial-card, .blog-list article, .confirmation-message {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:active, .feature-item:active, .feature-grid > div:active, .case-study:active, .testimonial-card:active, .blog-list article:active {
  transform: scale(0.98);
}
.cta-primary:active {
  transform: scale(0.98);
}
/* Utility Spacing Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }
/* END OF STYLE.CSS */
