/* 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;
}
body {
  line-height: 1.5;
  background: #F5F6FA;
  color: #244165;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #244165;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA500;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: bold;
}
button {
  font-family: inherit;
  font-size: 1em;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244165;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 400;
}

@media (min-width: 480px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

/* Container & Section Spacing */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}

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

.text-section {
  margin-bottom: 20px;
}

/* Navigation Header */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F5F6FA;
  box-shadow: 0 2px 10px 0 rgba(36,65,101,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
header nav a:not(.btn-primary):hover {
  color: #FFA500;
  border-bottom: 2px solid #FFA500;
}

/* Primary Action Button */
.btn-primary {
  background: #FFA500;
  color: #244165;
  border-radius: 30px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px -2px rgba(255,165,0,0.10);
  transition: background 0.25s, color 0.15s, box-shadow 0.25s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #244165;
  color: #FFF;
  box-shadow: 0 6px 22px -2px rgba(36,65,101,0.15);
  transform: translateY(-2px) scale(1.04);
}

/* Mobile Header Navigation */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #244165;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
}
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu (Overlay) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #244165;
  color: #fff;
  z-index: 9999;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.82,.01,0,1), opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #fff;
  border: none;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  align-self: flex-end;
}
.mobile-menu-close:hover { color: #FFA500; transform: scale(1.15); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA500;
  color: #244165;
}

/* Main Layout Patterns (Flex Only)  */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > li, .service-list > li {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(36,65,101,0.06);
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.20s, background 0.12s;
}
.feature-grid > li:hover, .service-list > li:hover {
  box-shadow: 0 6px 30px -3px rgba(255,165,0,0.10), 0 2px 16px 0 rgba(36,65,101,0.05);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img, .service-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 9px;
  background: #F5F6FA;
  object-fit: contain;
  box-shadow: 0 6px 26px 0 rgba(36,65,101,0.03);
}
.service-list h3 span {
  font-size: 1rem;
  color: #FFA500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-left: 8px;
}

/**********************/
/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 18px 0 rgba(36,65,101,0.10);
  border-left: 7px solid #FFA500;
  padding: 20px 30px 18px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 650px;
  transition: box-shadow 0.18s, transform 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,165,0,0.14), 0 1px 18px 0 rgba(36,65,101,0.10);
  transform: translateY(-2px) scale(1.025);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #244165;
  line-height: 1.4;
  margin: 0 0 0.7em 0;
  font-weight: 600;
}
.testimonial-author {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  color: #777B8A;
  font-weight: 500;
}

/* Section Layouts & Flex Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(36,65,101,0.09);
  padding: 24px 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********/  
/* Lists */
#available-products {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px 0;
}
#available-products li {
  background: #F5F6FA;
  color: #244165;
  padding: 8px 14px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.pricing-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFA500;
  font-weight: 800;
  font-size: 1.1rem;
}

/*********/
/* Map Placeholder */
.contact-map-placeholder {
  background: #F5F6FA;
  box-shadow: 0 1px 10px 0 rgba(36,65,101,0.07);
  border-radius: 18px;
  padding: 24px 20px;
  margin-top: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244165;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/******* FOOTER ******/
footer {
  background: #244165;
  color: #fff;
  padding: 38px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding: 0;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFA500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer .text-section {
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E3E4EA;
  margin-bottom: 0;
  margin-top: 12px;
}
footer a[href^="mailto"] {
  color: #FFA500;
  text-decoration: underline;
  font-weight: 700;
}
footer a[href^="mailto"]:hover, footer a[href^="mailto"]:focus{
  color: #fff;
}
footer strong {
  color: #FFA500;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 991px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav {
    margin-bottom: 6px;
  }
}

/************ Responsive Adjustments ***********/
@media (max-width: 991px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    gap: 18px;
  }
  .feature-grid > li, .service-list > li, .testimonial-card {
    min-width: 170px;
    padding: 18px 12px 16px 14px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 550px) {
  .testimonial-card {
    padding: 10px 9px 12px 14px;
    border-radius: 13px;
    font-size: 0.95rem;
    min-width: 0;
  }
}

/****** MICRO-ANIMATIONS ******/
.btn-primary, .testimonial-card, .feature-grid>li, .service-list>li {
  transition: box-shadow 0.18s, transform 0.18s, background 0.12s;
}

/* Form Styles - none, but style any default form if present */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1.5px solid #D6DEE9;
  background: #FFF;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFA500;
  outline: none;
}

/***** COOKIE BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #244165;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 20px 22px 20px;
  z-index: 30000;
  box-shadow: 0 -3px 28px 0 rgba(36,65,101,0.15);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.22s;
  animation: cookie-in 0.6s cubic-bezier(.51,.08,.21,1.06);
}
@keyframes cookie-in {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 2 1 320px;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-banner__btn {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, box-shadow 0.17s, transform 0.13s;
}
.cookie-banner__btn--accept {
  background: #FFA500;
  color: #244165;
  box-shadow: 0 2px 12px 0 rgba(255,165,0,0.08);
}
.cookie-banner__btn--accept:hover, .cookie-banner__btn--accept:focus {
  background: #fff;
  color: #FFA500;
  transform: scale(1.06);
}
.cookie-banner__btn--reject {
  background: #fff;
  color: #244165;
  border: 2px solid #FFA500;
  box-shadow: 0 2px 8px 0 rgba(255,165,0,0.05);
}
.cookie-banner__btn--reject:hover, .cookie-banner__btn--reject:focus {
  background: #FFA500;
  color: #244165;
  border-color: #FFA500;
  transform: scale(1.06);
}
.cookie-banner__btn--settings {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cookie-banner__btn--settings:hover, .cookie-banner__btn--settings:focus {
  background: #FFA500;
  color: #244165;
  border-color: #FFA500;
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 10px 14px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Modal Overlay & Dialog */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,65,101,0.48);
  z-index: 40000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
 from { opacity:0; } to { opacity:1; }  
}
.cookie-modal {
  background: #fff;
  color: #244165;
  padding: 38px 30px 32px 30px;
  max-width: 96vw;
  width: 420px;
  border-radius: 22px;
  box-shadow: 0 7px 48px 0 rgba(36,65,101,0.17);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: scaleIn 0.33s cubic-bezier(.62,-0.01,.27,.97);
}
@keyframes scaleIn {
 from { transform: scale(0.91); opacity: 0;} to { transform: scale(1); opacity:1; }
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #244165;
  cursor: pointer;
  transition: color 0.15s, transform 0.13s;
}
.cookie-modal__close:hover { color: #FFA500; transform: scale(1.15); }
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  margin-bottom: 12px;
}
.cookie-modal li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #244165;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #D6DEE9;
  border-radius: 17px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #FFA500;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.16s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-category--essential label {
  color: #aaa;
  font-style: italic;
}
.cookie-category--essential .cookie-toggle {
  background: #F3EAEA;
  pointer-events: none;
}

/********* Utility ***********/
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mr-1 { margin-right: 8px; }
.mr-2 { margin-right: 16px; }
.flex-row {
  display: flex; flex-direction: row; gap: 16px;
}
.flex-col {
  display: flex; flex-direction: column; gap: 16px;
}
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/****** Geometric visual accents ******/
.feature-grid > li::after, .service-list > li::after {
  content: '';
  display: block;
  width: 38px;
  height: 6px;
  border-radius: 4px;
  background: #D6DEE9;
  margin-top: 10px;
}
.feature-grid > li:hover::after, .service-list > li:hover::after {
  background: #FFA500;
}

/****** Accent shapes for bold look (for cards, hero sections) ******/
section.hero, .card.accent {
  background: #244165;
  color: #fff;
  border-radius: 36px 8px 32px 8px;
  box-shadow: 0 10px 42px 0 rgba(36,65,101,0.07);
}

/***** END OF CSS STYLE FILE *****/
