/* 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, 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, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9FBFC;
  color: #27405A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* COLOR PALETTE (Soft Pastel Implementation) */
:root {
  --primary: #2A70A6;
  --secondary: #F4FAFE;
  --accent: #36B37E;
  --pastel-blue: #B6D8F6;
  --pastel-green: #C9F5E0;
  --pastel-pink: #FFEDFA;
  --pastel-yellow: #FEF7E0;
  --pastel-lavender: #ECE6FC;
  --white: #fff;
  --text-main: #27405A;
  --text-soft: #7190A6;
  --card-shadow: 0 6px 24px 0 rgba(42,112,166,0.08);
  --border-radius: 20px;
  --shadow: 0 4px 16px 0 rgba(80, 120, 180, 0.07);
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(42,112,166,0.13);
  transform: translateY(-2px) scale(1.015);
}

.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;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F4FAFE 80%, #B6D8F6 100%);
  margin-bottom: 60px;
  padding: 64px 20px 48px 20px;
  border-radius: 0 0 36px 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-soft);
}
.hero p {
  color: var(--text-main);
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/***** GENERAL TITLES & TYPOGRAPHY *****/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, address {
  color: var(--text-main);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}
ul, ol {
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
  color: var(--primary);
}

blockquote {
  font-style: italic;
  color: var(--primary);
  padding-left: 24px;
  border-left: 4px solid var(--pastel-blue);
  background: var(--pastel-pink);
  border-radius: 12px;
  margin-bottom: 8px;
}

a:hover, .main-nav a.active, .footer-nav a.active, .footer-nav a:hover {
  color: var(--accent);
}

/******* MAIN NAVIGATION ******/
header {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(42,112,166,0.06);
  border-radius: 0 0 24px 24px;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}
.main-nav img {
  height: 38px;
  margin-right: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover {
  background: var(--pastel-blue);
  color: var(--accent);
}
.cta-primary {
  background: linear-gradient(90deg, #B6D8F6 0%, #C9F5E0 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 12px rgba(36,179,126,0.13);
  margin-left: 10px;
  transition: background 0.22s, color 0.22s, transform 0.18s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.03);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px rgba(54,179,126,0.13);
  border: none;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 110;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.16s;
  display: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(140deg, #F4FAFE 85%, #B6D8F6 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1), opacity 0.22s;
  padding: 20px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
.mobile-nav a:hover {
  color: var(--accent);
}

/********* RESPONSIVE NAVIGATION *******/
@media (max-width: 1050px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav a { padding: 6px 9px; font-size: .98rem; }
}
@media (max-width: 830px) {
  .main-nav { gap: 5px; }
  .main-nav a, .cta-primary { font-size: .95rem; padding: 8px 14px; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/********* CTA Section *******/
.cta-section {
  background: linear-gradient(105deg, #F4FAFE 70%, #C9F5E0 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 42px 20px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

/* Feature Icons Row & Utility */
.feature-icons {
  display: flex;
  align-items: center;
  gap: 38px;
  margin: 22px 0 8px 0;
}
.feature-icons span {
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: 15px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 10px rgba(251,213,104,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-icons img { height: 24px; width: 24px; }

/********* PRODUCTS & LISTS **********/
.product-highlights {
  background: var(--pastel-lavender);
  border-radius: 15px;
  padding: 16px 18px;
  margin: 18px 0 10px 0;
  font-size: 1.05rem;
  color: var(--text-main);
  box-shadow: 0 1px 9px rgba(162,147,212,0.09);
}

/******* TESTIMONIALS & CARDS *******/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(42,112,166,0.08);
  border-left: 6px solid var(--pastel-blue);
}
.testimonial-card blockquote {
  margin-bottom: 0;
  padding: 0 20px 0 0;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--accent);
}
.testimonial-card.rating {
  flex-direction: row;
  background: var(--pastel-green);
  color: var(--primary);
  border-left: 6px solid var(--accent);
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(54,179,126,0.06);
}
.testimonial-card.rating span {
  font-size: 1rem;
  margin: 0 8px 0 0;
}
.testimonial-card.rating img {
  height: 28px;
  width: 28px;
  margin: 0 2px;
}

/********* FOOTER **********/
footer {
  padding: 40px 0 16px 0;
  background: var(--secondary);
  border-radius: 36px 36px 0 0;
  margin-top: 56px;
  box-shadow: 0 -3px 28px rgba(42,112,166,0.06);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 5.5px 14px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--pastel-blue);
  color: var(--accent);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--text-soft);
}
address {
  font-style: normal;
  color: var(--text-main);
  line-height: 1.7;
}

/****** Cookie Banner & Modal ******/
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  background: var(--pastel-lavender);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 3px 28px rgba(42,112,166,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  z-index: 2000;
  font-size: 1rem;
  animation: showCookieBanner 0.7s;
}
@keyframes showCookieBanner {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  padding: 7px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  box-shadow: 0 1px 6px rgba(142,105,218,0.07);
  outline: none;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  transform: scale(1.05);
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--pastel-yellow);
  color: var(--accent);
}
.cookie-btn.settings {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--pastel-green);
  color: var(--accent);
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  inset: 0;
  background: rgba(42,112,166,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeInCookieModal 0.24s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  min-width: 320px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(36,112,166,0.14);
  padding: 30px 28px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalBounceIn 0.32s;
}
@keyframes modalBounceIn {
  0% { opacity: 0; transform: scale(0.93) translateY(18px); }
  85% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--white);
}
.cookie-preference-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-preference-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
}
.cookie-preference-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.cookie-preference-category .always-on {
  background: var(--pastel-green);
  color: var(--accent);
  border-radius: 8px;
  padding: 2px 12px;
  font-size: .97rem;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}

/********* OFFICE MAP ICON ********/
.office-map {
  margin-top: 10px;
}
.office-map img {
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px rgba(42,112,166,0.06);
  width: 100%;
  max-width: 360px;
}

/******* UTILITIES & MISC ********/
::-webkit-scrollbar {
  width:10px; background:var(--secondary); border-radius:10px;
}
::-webkit-scrollbar-thumb {
  background:var(--pastel-blue); border-radius:10px;
}

/******* RESPONSIVE DESIGN *******/
@media (max-width: 1120px){
  .container{max-width:96vw;}
}
@media (max-width: 900px){
  .office-map img { max-width: 250px; }
}
@media (max-width: 670px){
  .section, .hero {
    padding: 26px 8px;
  }
  .footer-contact, .footer-nav { flex-direction: column; gap: 10px; }
  .hero {
    padding: 38px 8px 30px 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container, .content-grid, .feature-icons {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .cta-section {
    padding: 26px 8px;
    gap: 14px;
  }
}
@media (max-width: 540px){
  .footer-nav { gap: 8px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 13px;
  }
}
@media (max-width: 420px){
  .main-nav img { height: 30px; }
  .container { padding: 0 6px; }
  .cookie-modal { padding: 16px 6px; min-width: 0; }
}

/* ADDITIONAL FLEX-ONLY LAYOUTS */
/* Ensure flex-direction: column on mobile for .text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Animations for subtle interactions */
.card, .testimonial-card, .cta-section, .feature-icons span {
  transition: box-shadow .2s, transform .2s, background .2s, color .2s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.995);
  box-shadow: 0px 2px 8px rgba(42,112,166,0.05);
}

/****** Extra input/button focus ***********/
button:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  box-shadow: 0 0 0 2px var(--primary), 0 1px 10px 0 rgba(54,179,126,.10);
  outline: none;
}

/****** Spacing Between Cards/Sections *******/
section+.section, .section+.section, .card+.card, .testimonial-card+.testimonial-card {
  margin-top: 20px;
}

/* Hide scroll on mobile menu when open */
body.menu-open {
  overflow: hidden;
}

/* END OF CSS */
