/* ===== CSS RESET & NORMALIZE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #1d2d3e;
  background-color: #f7f9fb;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #133E59;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #F0B90B;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #133E59;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
section h2 {
  margin-top: 0;
}
p {
  margin-bottom: 16px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #E3E7EC;
  text-align: left;
}
th {
  background: #E3E7EC;
  color: #133E59;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== BRAND COLORS & VARIABLES ===== */
:root {
  --primary: #133E59;
  --secondary: #E3E7EC;
  --accent: #F0B90B;
  --bg: #f7f9fb;
  --text: #1d2d3e;
  --muted: #6b7a8f;
  --shadow: 0 4px 16px rgba(19, 62, 89, 0.09), 0 1.5px 4px rgba(19,62,89,0.05);
}

/* ===== CONTAINER & LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s;
  padding: 24px 20px;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(19,62,89,0.12), 0 2px 6px rgba(19,62,89,0.10);
}
.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 {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  color: #133E59;
}
.testimonial-card p {
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: 6px;
  color: #1d2d3e;
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: #133E59;
  font-weight: 600;
}
.feature-item {
  background: #f7f9fb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px;
  min-width: 220px;
  max-width: 270px;
  box-shadow: 0 2px 8px rgba(19,62,89,0.07);
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(19,62,89,0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #133E59;
  font-weight: 500;
  padding: 8px 10px;
  font-size: 1.01rem;
  border-radius: 5px;
  transition: background 0.2s, color 0.18s;
}
.main-nav a:active,
.main-nav a:focus,
.main-nav a:hover {
  background: #E3E7EC;
  color: #133E59;
}
.btn-primary, .btn-primary:visited {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  box-shadow: 0 2px 12px rgba(19,62,89,0.10);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #0f3046;
  color: #F0B90B !important;
  box-shadow: 0 5px 18px rgba(19,62,89,0.12);
}
.btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--primary);
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, border 0.19s, box-shadow 0.17s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #133E59;
  color: #fff;
  border-color: #133E59;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #133E59;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #F0B90B;
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 18px rgba(19,62,89,0.12);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(.53,1.4,.52,1);
  z-index: 999;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #133E59;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F0B90B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px 36px 30px 36px;
  flex: 1;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #133E59;
  font-weight: 500;
  padding: 10px 6px;
  border-radius: 5px;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E3E7EC;
  color: #F0B90B;
}

/* Overlay behind mobile menu */
body.mobile-menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(19,62,89,0.27);
  pointer-events: all;
  transition: background 0.18s;
}

/* Hide main-nav and show burger on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO & CALLS TO ACTION ===== */
section:first-of-type {
  background: linear-gradient(107deg, #E3E7EC 62%, #f7f9fb 100%);
  border-bottom: 1.5px solid #D0D7E2;
  padding-top: 32px;
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 26px 4px;
    margin-bottom: 36px;
  }
  .section {
    padding: 26px 4px;
    margin-bottom: 36px;
  }
}
.content-wrapper {
  margin-bottom: 0;
}

/* ===== CARDS & FEATURE ELEMENTS ===== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 25px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.service-item h2 {
  font-size: 1.17rem;
  color: #133E59;
  font-weight: 600;
  margin-bottom: 9px;
}
.service-item p {
  font-size: 1.01rem;
}
.service-item:hover {
  box-shadow: 0 4px 28px rgba(19,62,89,0.13);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #133E59;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.star-rating img {
  width: 22px;
  height: 22px;
}
.star-rating span {
  margin-left: 8px;
  font-size: 1.02rem;
  color: #6b7a8f;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: #133E59;
  margin-bottom: 4px;
}
.faq-list dd {
  margin-left: 16px;
  margin-bottom: 10px;
  color: #254766;
  font-size: 1rem;
}

/* ===== MAP & LOCATION PLACEHOLDER ===== */
.map-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-placeholder {
  background: #E3E7EC;
  color: #6b7a8f;
  border-radius: 10px;
  padding: 42px 10px;
  text-align: center;
  box-shadow: 0 2px 11px rgba(19,62,89,0.08);
  font-size: 1.03rem;
}

/* ===== FOOTER ===== */
footer {
  background: #133E59;
  color: #fff;
  padding: 40px 0 26px 0;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-content > a img {
  height: 38px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #f7f9fb;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  opacity: 0.87;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #F0B90B;
}
.company-info {
  font-size: 0.98rem;
  max-width: 330px;
  margin-bottom: 10px;
}
.footer-branding {
  font-size: 1.04rem;
  color: #F0B90B;
  opacity: 0.87;
  margin-top: 13px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===== TABLE & DATA ===== */
table {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(19,62,89,0.07);
  margin-bottom: 30px;
  overflow: hidden;
}
th, td {
  font-size: 1rem;
}

/* ===== TEXT-SECTIONS ===== */
.text-section {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(19,62,89,0.08);
  padding: 36px 26px 38px 26px;
  margin-bottom: 32px;
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
}

.company-info img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  width: 22px;
  height: 22px;
}
.company-info a {
  color: #133E59;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.16s;
}
.company-info a:hover,
.company-info a:focus {
  color: #F0B90B;
}

.contact-hint p {
  background: #E3E7EC;
  border-left: 4px solid #133E59;
  padding: 16px 14px;
  border-radius: 5px;
  color: #27405b;
  font-size: 1.02rem;
}

/* ===== BUTTONS & LINK VARIANTS ===== */
.btn-primary:active {
  background: #0f3046;
}
.btn-secondary:active {
  background: #27405b;
  color: #fff;
  border-color: #27405b;
}

/* ====== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 22px rgba(19,62,89,0.14);
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  z-index: 2000;
  gap: 38px;
  transition: transform 0.4s cubic-bezier(.53,1.4,.52,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 420px;
  color: #283d4a;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  background: #E3E7EC;
  color: #133E59;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn.accept {
  background: #133E59;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: #0f3046;
  color: #F0B90B;
}
.cookie-banner .cookie-btn.settings {
  background: #E3E7EC;
  color: #133E59;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #d0d7e2;
  color: #133E59;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  border: 1.5px solid #133E59;
  color: #133E59;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #133E59;
  color: #fff;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19,62,89,0.21);
  z-index: 2100;
  opacity: 1;
  transition: opacity 0.24s;
  pointer-events: auto;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  max-width: 94vw;
  width: 420px;
  padding: 32px 28px 28px 28px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 9px 36px rgba(19,62,89,0.22);
  z-index: 2101;
  transform: translate(-50%,-53%) scale(1);
  transition: transform 0.35s cubic-bezier(.53,1.4,.52,1), opacity 0.18s;
  opacity: 1;
}
.cookie-modal.hide {
  transform: translate(-50%,-47%) scale(.93);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #133E59;
  margin-bottom: 13px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
.cookie-modal .category-label {
  font-size: 1.07rem;
  font-weight: 600;
  color: #1d2d3e;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  background: #E3E7EC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  border: none;
  outline: none;
  display: inline-block;
}
.cookie-modal .cookie-switch[aria-checked="true"] {
  background: #F0B90B;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.3px 4px rgba(19,62,89,0.12);
  transition: left 0.19s;
}
.cookie-modal .cookie-switch[aria-checked="true"]:before {
  left: 18px;
}
.cookie-modal .cookie-switch[disabled] {
  opacity: .65;
  cursor: default;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.65rem;
  color: #133E59;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #F0B90B;
}
.cookie-modal .category-desc {
  color: #6b7a8f;
  margin-left: 5px;
  font-size: 0.98rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .service-grid,
  .testimonial-slider,
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch;
  }
  .feature-grid, .testimonial-slider, .card-container {
    gap: 18px !important;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .main-nav {
    display: none !important;
  }
  .footer-content {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-content > a img {
    margin-bottom: 11px;
  }
}
@media (max-width: 600px) {
  .text-section {
    padding: 20px 2px 23px 2px;
    margin-bottom: 19px;
  }
  .feature-item, .service-item {
    padding: 18px 7px;
  }
  .testimonial-card {
    padding: 13px 8px;
  }
  .container {
    padding: 0 5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 22px 4px 12px 4px;
  }
  .cookie-modal {
    min-width: 210px;
    width: 94vw;
    padding: 23px 8px 17px 8px;
  }
}

/* ====== VISUAL HIERARCHY: BORDERS, SHADOWS, ETC. ===== */
.card, .service-item, .feature-item, .testimonial-card, .text-section {
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(19,62,89,0.08);
}

/* ====== SPACING, GAPS, ETC. (MANDATORY RULES) ===== */
.card-container, .testimonial-slider, .feature-grid, .content-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

/* ====== MICRO-INTERACTION ANIMATIONS ===== */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.19s;
}
.card, .service-item, .testimonial-card, .feature-item {
  transition: box-shadow 0.21s;
}
.card:hover, .service-item:hover, .feature-item:hover {
  box-shadow: 0 8px 30px rgba(19,62,89,0.12);
  z-index: 1;
}
input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* ====== UTILITY CLASSES ===== */
.muted {
  color: #6b7a8f;
}

/* ====== PRINT STYLES (OPTIONAL, MINIMAL) ===== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal, .cookie-modal-backdrop { display: none !important; }
  body { background: #fff !important; color: #133E59 !important; }
}
