/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7FAFC;
  color: #215177;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #215177;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFC144;
  outline: none;
}
section:first-of-type .text-section {
  background-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
button,input,select,textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #215177;
}

/* VARIABLES */
:root {
  --brand-primary: #215177;
  --brand-secondary: #EDEDED;
  --brand-accent: #FFC144;
  --color-bg-gradient: linear-gradient(120deg, #215177 0%, #377BAB 100%);
  --color-bg-card: #fff;
  --color-text-main: #215177;
  --color-text-dark: #0e2233;
  --color-subtle: #7489a4;
  --color-testimonial-bg: #FAFBFD;
  --radius-large: 16px;
  --radius-small: 8px;
  --shadow-soft: 0 4px 16px 0 rgba(33,81,119,0.09);
  --shadow-accent: 0 1.5px 8px 0 rgba(255,193,68,0.18);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 24px;
  line-height: 1.18;
  font-weight: 800;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  line-height: 1.22;
  font-weight: 700;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-primary);
}
p, li {
  font-size: 1rem;
  color: var(--color-text-main);
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-text-main);
  background: transparent;
  border-left: 4px solid var(--brand-accent);
  padding-left: 20px;
  margin-bottom: 8px;
}
cite {
  font-size: 0.95rem;
  color: var(--color-subtle);
  font-style: italic;
  margin-left: 18px;
}

/* LAYOUT UTILITY */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  background: #F7FAFC;
  border-radius: var(--radius-large);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  gap: 18px;
}

/* FLEX LAYOUT SPECIFICS */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 320px;
  max-width: 360px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(33,81,119,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-testimonial-bg);
  padding: 20px 24px;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 12px 0 rgba(55,123,171,0.06);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section ul,
.section ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0;
}

/* HEADER & MAIN NAVIGATION */
header {
  width: 100%;
  background: var(--color-bg-gradient);
  color: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 12;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 20px 12px 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.main-nav > a img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-small);
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: rgba(255,255,255,0.11);
  color: var(--brand-accent);
}
.main-nav .button.primary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-radius: var(--radius-small);
  padding: 8px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(255,193,68,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav .button.primary:hover {
  background: #ffda86;
  color: var(--brand-primary);
  box-shadow: var(--shadow-accent);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  border: none;
  border-radius: var(--radius-small);
  color: var(--brand-primary);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 12px;
  z-index: 30;
  box-shadow: var(--shadow-accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffda86;
  color: var(--brand-primary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 32px 8px rgba(33,81,119,0.11);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 100;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  opacity: 0.9;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 0 0;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-primary);
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-small);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* Button Styles */
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-small);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  cursor: pointer;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.2s;
}
.button.primary,
a.button.primary {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border: none;
  box-shadow: var(--shadow-accent);
}
.button.primary:hover,
a.button.primary:hover {
  background: #ffda86;
  color: var(--brand-primary);
  box-shadow: 0 4px 18px 0 rgba(255,193,68,0.24);
  transform: translateY(-2px) scale(1.04);
}
.button.secondary {
  background: var(--brand-primary);
  color: #fff;
  border: none;
}
.button.secondary:hover {
  background: #377BAB;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(55,123,171,0.16);
}

/* FOOTER */
footer {
  background: #0e2233;
  color: #fff;
  padding: 36px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  opacity: 0.88;
  padding: 5px 13px;
  border-radius: var(--radius-small);
  transition: color 0.16s, background 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
  background: rgba(255,193,68,0.08);
}
.legal_info {
  font-size: 0.98rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

/* TESTIMONIALS - READABILITY & CONTRAST */
.testimonial-card {
  background: #fff;
  color: var(--color-text-dark);
  border-left: 6px solid var(--brand-accent);
  box-shadow: var(--shadow-soft);
}
.testimonial-card blockquote {
  color: var(--color-text-dark);
  border-left: none;
  padding-left: 0;
  margin-bottom: 4px;
  background: none;
}
.testimonial-card cite {
  color: var(--brand-primary);
}

/* CONTACT & INFO LISTS */
.section ul li,
.section ol li {
  border-left: 3px solid #e3f0fa;
  background: #FAFBFD;
  border-radius: var(--radius-small);
  padding: 10px 18px;
  color: var(--brand-primary);
}
.section ul li strong {
  color: var(--brand-primary);
}
.section a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.15s, text-decoration 0.13s;
}
.section a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* HERO & OFFERS */
section:first-of-type {
  background: var(--color-bg-gradient);
  color: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  margin-bottom: 60px;
}
section:first-of-type .h1,
section:first-of-type h1,
section:first-of-type h2,
section:first-of-type p {
  color: #fff !important;
}
section:first-of-type .button.primary {
  background: #fff;
  color: var(--brand-primary) !important;
}
section:first-of-type .button.primary:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* CARDS - SERVICE OVERVIEW */
.content-wrapper > ul,
.content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.content-wrapper > ul > li, .content-wrapper > ol > li {
  flex: 1 1 265px;
  min-width: 255px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-accent);
  margin-bottom: 20px;
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.content-wrapper > ul > li:hover {
  box-shadow: 0 4px 22px 0 rgba(255,193,68,0.13);
  transform: translateY(-4px) scale(1.03);
}
.content-wrapper > ul > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.content-wrapper > ul > li h3 {
  margin: 9px 0 2px 0;
}
.content-wrapper > ul > li p {
  color: var(--brand-primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav, .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .content-wrapper > ul > li, .content-wrapper > ol > li {
    min-width: 190px;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2, .h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
  .container {
    padding: 0 5px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 40px;
  }
  .content-wrapper, .text-section {
    gap: 13px;
    padding: 16px 6px;
  }
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .main-nav > a img {
    height: 32px;
  }
  .card,
  .content-wrapper > ul,
  .content-wrapper > ol {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper > ul > li, .content-wrapper > ol > li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    gap: 14px;
    padding: 13px 9px;
    font-size: 0.99rem;
  }
  footer nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 2.5vw;
  }
  .main-nav {
    padding: 6px 5px 6px 5px;
  }
  .mobile-menu-toggle {
    right: 10px;
    top: 7px;
  }
  .mobile-menu-close {
    margin: 16px 16px 0 0;
  }
}

/* SPACING UTILITY */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-60 { margin-top: 60px !important; }
.mb-60 { margin-bottom: 60px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* MICRO-INTERACTIONS & TRANSITIONS */
a, button, .button, .card, .card-content, .mobile-menu, .mobile-menu-toggle {
  transition: all 0.2s cubic-bezier(0.55,0,0.1,1);
}
.card:hover, .content-wrapper > ul > li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(33,81,119,0.13);
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px 0 rgba(33,81,119,0.09);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: #fff;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 -3px 24px rgba(33,81,119,0.07);
  z-index: 1200;
  font-size: 1rem;
  border-top-left-radius: var(--radius-large);
  border-top-right-radius: var(--radius-large);
  gap: 12px;
  animation: banner-slidein 0.6s cubic-bezier(0.55,0,0.1,1);
}
@keyframes banner-slidein {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner .button {
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: var(--shadow-accent);
}
.cookie-banner .button.secondary {
  background: #fff;
  color: var(--brand-primary);
}
.cookie-banner .button.settings {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 8px 16px;
}
.cookie-banner .button:hover {
  background: #ffda86;
  color: var(--brand-primary);
  box-shadow: 0 3px 9px rgba(255,193,68,0.13);
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1300;
  background: rgba(33,81,119,0.34);
  animation: modal-fadein 0.21s cubic-bezier(0.55,0,0.1,1);
}
@keyframes modal-fadein { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: #fff;
  color: var(--brand-primary);
  border-radius: var(--radius-large);
  max-width: 420px;
  width: 95vw;
  padding: 32px 26px 20px 26px;
  box-shadow: 0 8px 30px 0 rgba(33,81,119,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-slideup 0.42s cubic-bezier(0.55,0,0.1,1);
}
@keyframes modal-slideup {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 13px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-modal .cookie-category {
  flex: 1;
}
.cookie-modal .cookie-toggle {
  min-width: 32px;
  height: 22px;
  border-radius: 22px;
  background: #EDEDED;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--brand-primary);
}
.cookie-modal .cookie-toggle.disabled {
  background: #EDEDED;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #fff;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle.enabled:before {
  left: 12px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .button {
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
}
.cookie-modal .button:hover {
  background: #ffda86;
}
@media (max-width: 540px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 16px 8px 14px 8px;
  }
}

/* HIDE/SHOW */
.d-none { display: none !important; }

::-webkit-scrollbar { width: 10px; background: #f5f9fb; }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 8px; }
/* Make scrollbar less obtrusive */
::-webkit-scrollbar-thumb:hover { background: #377bab; }

/* FOCUS VISIBLE OUTLINE */
.button:focus-visible, a.button:focus-visible,
.mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px dashed var(--brand-accent);
  outline-offset: 2px;
}
/* End of style.css for Warm Dimension "gradient_modern" design. Responsive, totally flexbox, mobile menu and cookie consent included, all classes matched to HTML. */