/* ==========================================================================  
    RESET & BASE STYLES  
   ========================================================================== */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #203354;
  background: #F5F7FA;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #178A7B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #203354;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================  
   FONT IMPORTS  
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

/* ==========================================================================  
   GLOBAL UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-section {
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

strong {
  font-weight: 700;
}

/* ==========================================================================  
   HEADERS, TITLES & TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #203354;
  line-height: 1.18;
  margin-top: 0;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, blockquote, td, th {
  font-size: 1rem;
  margin-bottom: 14px;
}
blockquote {
  border-left: 4px solid #178A7B;
  margin-left: 0;
  padding-left: 18px;
  color: #203354;
  font-style: italic;
  background: #E7F3F0;
}

/* ==========================================================================  
   HEADER / MAIN NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  border-bottom: 2px solid #E0E6EF;
  padding: 0;
  position: relative;
  z-index: 110;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 0;
}

.logo img {
  height: 44px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 6px;
  color: #203354;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7F3F0;
  color: #178A7B;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: #178A7B;
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  margin-left: 24px;
  box-shadow: 0 2px 12px rgba(32,51,84,0.09);
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #203354;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 20px rgba(32,51,84,0.16);
}

.mobile-menu-toggle {
  display: none;
  background: #F5F7FA;
  color: #178A7B;
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 7px 16px;
  margin-left: 30px;
  transition: background 0.2s, color 0.2s;
  z-index: 9998;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E7F3F0;
  color: #203354;
}

/* ==========================================================================  
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,51,84, 0.97);
  z-index: 4000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.5,.32,1.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 35px;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin: 14px 22px 14px 0;
  padding: 0 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #178A7B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  margin-top: 28px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.2s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #178A7B;
  background: rgba(255,255,255,0.08);
}

/* ==========================================================================  
   SECTION, LAYOUTS, SPACING  (MANDATORY FLEXBOX PATTERNS)
   ========================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,51,84,0.07);
  padding: 28px 22px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(32,51,84,0.16);
  transform: translateY(-2px) scale(1.012);
}

.content-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(23,138,123,0.08);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #E0E6EF;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.13s;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  border-radius: 8px;
  background: #E7F3F0;
  padding: 6px;
}
.feature:hover, .feature:focus-within {
  border-color: #178A7B;
  box-shadow: 0 6px 22px rgba(23,138,123,0.15);
  transform: translateY(-3px) scale(1.015);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(23,138,123,0.09);
  border-left: 4px solid #178A7B;
  max-width: 620px;
}
.reviewer-details {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #178A7B;
  font-size: 1rem;
  margin-top: -10px;
}

.service-list-preview {
  margin-bottom: 12px;
  margin-top: 5px;
  padding-left: 18px;
}
.service-list-preview li {
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
}
.service-list-preview li::before {
  content: "\25B6";
  color: #178A7B;
  font-size: 0.85em;
  margin-right: 8px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,51,84,0.10);
  border: 2px solid #E0E6EF;
  padding: 26px 21px 18px 21px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.18s, transform 0.12s;
}
.service img {
  width: 38px;
  height: 38px;
  background: #E7F3F0;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 7px;
}
.service:hover, .service:focus-within {
  border-color: #178A7B;
  box-shadow: 0 6px 20px rgba(23,138,123,0.13);
  transform: translateY(-3px) scale(1.015);
}

.blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.blog-post {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px 16px 18px;
  box-shadow: 0 2px 10px rgba(23,138,123,0.09);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 240px;
  border: 1.5px solid #E0E6EF;
  transition: box-shadow 0.17s, border-color 0.18s, transform 0.12s;
}
.blog-post h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.blog-post a {
  color: #178A7B;
  font-weight: 600;
  text-decoration: underline;
  align-self: flex-end;
  margin-top: 10px;
  border-radius: 4px;
  transition: color 0.14s, background 0.14s;
  padding: 4px 8px;
}
.blog-post a:hover, .blog-post a:focus {
  color: #fff;
  background: #178A7B;
}
.blog-post:hover,
.blog-post:focus-within {
  border-color: #178A7B;
  box-shadow: 0 6px 16px rgba(23,138,123,0.12);
  transform: translateY(-2px) scale(1.01);
}

.blog-categories {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 0.98rem;
}
.featured-articles {
  margin-top: 12px;
}
.featured-articles h3 {
  margin-bottom: 8px;
}
.featured-articles ul {
  padding-left: 17px;
}
.featured-articles li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,51,84,0.08);
  overflow: hidden;
  margin: 26px 0 18px 0;
}
.pricing-table th, .pricing-table td {
  padding: 17px 12px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E6EF;
}
.pricing-table th {
  font-family: 'Montserrat', sans-serif;
  background: #F5F7FA;
  color: #178A7B;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.price-notes {
  background: #E7F3F0;
  color: #203354;
  border-radius: 7px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.service-inclusions {
  margin-top: 0px;
  padding-left: 0;
}
.service-inclusions ul {
  margin-left: 12px;
  padding-left: 16px;
}
.service-inclusions li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1rem;
}

.policy-text {
  font-size: 1.07rem;
  color: #203354;
  line-height: 1.7;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(32,51,84,0.05);
  padding: 26px 22px;
}
.policy-text ul {
  padding-left: 18px;
  margin-bottom: 14px;
}
.policy-text li {
  margin-bottom: 7px;
  list-style: initial;
}

.contact-details {
  margin-bottom: 12px;
}
.location-map {
  margin-bottom: 12px;
}

/* ==========================================================================  
   FOOTER
   ========================================================================== */
footer {
  background: #203354;
  color: #fff;
  padding: 36px 0 12px 0;
  font-size: 1rem;
  box-shadow: 0 -3px 32px rgba(32,51,84,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.footer-menu a {
  color: #E7F3F0;
  font-family: 'Montserrat', sans-serif;
  padding: 5px 0;
  border-radius: 0;
  font-size: 1rem;
  transition: color 0.19s, text-decoration 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ffd700;
  text-decoration: underline;
}
.footer-contact {
  color: #B0BED2;
  font-size: 0.98rem;
}
.footer-logo img {
  height: 38px;
}

/* ==========================================================================  
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #203354;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -2px 24px rgba(32,51,84,0.12);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 22px 24px;
  min-height: 70px;
  transition: transform 0.35s cubic-bezier(.68,-0.5,.32,1.5), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 400px;
  margin-right: 14px;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-consent-btn, .cookie-settings-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 6px;
  padding: 8px 22px;
  margin: 0 2px;
  outline: none;
  background: #178A7B;
  color: #fff;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cookie-consent-btn.reject {
  background: #B0BED2;
  color: #203354;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #fff;
  color: #178A7B;
}

.cookie-settings-btn {
  background: #FFD700;
  color: #203354;
}
.cookie-settings-btn:hover,.cookie-settings-btn:focus {
  background: #203354;
  color: #FFD700;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,51,84,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  max-width: 440px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 6px 48px rgba(32,51,84,0.15);
  color: #203354;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px; 
  color: #203354;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 5px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 500;
  color: #203354;
}
.cookie-category input[type="checkbox"] {
  accent-color: #178A7B;
  width: 18px;
  height: 18px;
}
.cookie-category .essential {
  color: #178A7B;
  font-weight: 700;
  margin-left: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close-btn {
  margin-left: auto;
  background: transparent;
  color: #178A7B;
  font-size: 1.25rem;
  padding: 4px 9px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  border: none;
  align-self: flex-end;
}
.cookie-modal .cookie-modal-close-btn:hover, .cookie-modal .cookie-modal-close-btn:focus {
  background: #E7F3F0;
  color: #203354;
}

/* ==========================================================================  
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-logo { display: none; }
  .container { max-width: 960px; }
}
@media (max-width: 991px) {
  .container { max-width: 740px; }
  .main-nav { gap: 18px; }
  .feature-grid, .service-list, .card-container, .content-grid, .blog-posts-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid, .service-list, .card-container, .content-grid, .blog-posts-grid {
    gap: 12px;
  }
}
@media (max-width: 840px) {
  .footer-menu { min-width: 120px; }
  .footer-contact { font-size: 0.94rem; }
}
@media (max-width: 820px) {
  .header .container, header .container {
    gap: 17px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 0 10px;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .feature-grid, .service-list, .card-container, .content-grid, .blog-posts-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .text-image-section, .testimonial-card, .footer .container, footer .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px;
  }
  .footer-logo img { margin-top: 13px; }
  section {
    margin-bottom: 35px;
    padding: 28px 7px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .policy-text { padding: 17px 7px; }
  .container { padding-left: 6px; padding-right:6px; }
  .cookie-banner { flex-direction: column; gap: 17px; align-items: flex-start; padding: 18px 9px; font-size: 0.98rem; }
}
@media (max-width: 552px) {
  .footer-contact, .footer-menu, .footer-logo {
    font-size: 0.96rem;
    align-items: flex-start;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 24px 9px 16px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner { padding: 12px 4px; font-size: 0.97rem; min-height: 72px; }
}
@media (max-width: 450px) {
  .footer-logo img {
    height: 30px;
  }
  h1 { font-size: 1.35rem; margin-bottom: 12px; }
  h2 { font-size: 1.08rem; margin-bottom:10px; }
}

/* ==========================================================================  
   GEOMETRIC / STRUCTURED DECORATIVE / UI ELEMENTS
   ========================================================================== */
/* Geometric chevron highlight for CTA sections */
.text-section {
  border-left: 8px solid #178A7B;
  border-radius: 13px;
  background: #fff;
  padding: 30px 24px;
  box-shadow: 0 1.5px 8px rgba(32,51,84,0.06);
  margin-bottom: 16px;
}
.text-section h1, .text-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: inherit;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #203354;
  text-shadow: 0 1px 0 #fafbfc;
}

.feature img, .service img {
  background: linear-gradient(135deg, #F5F7FA 60%, #E7F3F0 100%);
  box-shadow: 0 3px 9px rgba(23,138,123,0.10);
  border-radius: 10px;
}

.cta-btn {
  box-shadow: 0 4px 20px rgba(32,51,84,0.16);
  border-bottom: 3px solid #135a50;
}
.cta-btn:active {
  background: #135a50;
  box-shadow: 0 1px 3px rgba(23,138,123,0.18);
}

blockquote {
  border-radius: 8px 32px 8px 8px;
  font-size: 1.08rem;
}

hr {
  border: none;
  border-bottom: 2.5px solid #178A7B;
  margin: 28px 0;
}

/* Angular geometric font accent for headings */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Visual dividers for geometric structure */
section:not(:last-of-type) {
  border-bottom: 2px solid #E0E6EF;
}

/* Featured section geometric accent */
.feature-grid, .service-list {
  border-left: 8px solid #178A7B;
  border-radius: 16px;
  background: #F5F7FA;
  padding: 18px 0 18px 20px;
}

/* --------------------------------------------------------------------------
   End of CSS File
   -------------------------------------------------------------------------- */
