/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #21436a;
  background: #ffffff;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #e97a23;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:active, a:focus {
  color: #b05700;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(33,67,106,0.10);
  margin: 32px 0 16px 0;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 2px solid #e6f0fa;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #21436a;
  background: #E6F0FA;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* ============== BRAND COLORS ============== */
:root {
  --primary: #21436a;
  --secondary: #e6f0fa;
  --accent: #e97a23;
  --accent-dark: #b05700;
  --bg-light: #ffffff;
  --danger: #d32f2f;
  --success: #43a047;
}

/* ============ TYPOGRAPHY =========== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px #e6f0fa;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #21436a;
}
strong {
  color: var(--accent);
  font-weight: 700;
}

/* =============== CONTAINER & SECTIONS =============== */
.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,67,106,0.07);
}
section:not(.cookie-banner):not(.cookie-modal) + section {
  margin-top: 24px;
}

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

.text-section {
  max-width: 730px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
}

/* =============== FLEXBOX PATTERNS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(33,67,106,0.12);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  flex: 1 1 250px;
  transition: transform .16s cubic-bezier(.17,.67,.83,.67), box-shadow .19s;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(233,122,35,0.23);
  z-index: 3;
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: #e6f0fa;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(33,67,106,0.11);
  position: relative;
  border-left: 6px solid var(--accent);
  max-width: 670px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.13rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-author {
  color: #21436a;
  font-size: 1rem;
  font-style: italic;
  float: right;
  font-weight: bold;
}

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

/* === BUTTONS === */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 0.92em 2.4em;
  font-size: 1.16rem;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background .18s, color .16s, box-shadow .20s, transform .15s;
  box-shadow: 0 2px 18px rgba(233, 122, 35, 0.06), 0 1.5px 3px rgba(33,67,106, 0.11);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent-dark);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 32px rgba(233, 122, 35, 0.17),0 1.8px 6px rgba(33,67,106, 0.13);
}
.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
  box-shadow: 0 4px 32px rgba(233, 122, 35, 0.15),0 1.8px 6px rgba(33,67,106, 0.17);
}

/* ========== HEADER & NAV ========== */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 1px 16px rgba(33,67,106, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 16px;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  color: var(--primary);
  transition: color .18s;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* === HIDE MOBILE MENU BUTTON ON DESKTOP ===*/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: color .13s, transform .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--accent-dark);
  transform: scale(1.13);
}

/* =============== MOBILE MENU OVERLAY =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1900;
  transform: translateX(100%);
  transition: transform .39s cubic-bezier(.54,.04,.47,.87);
  box-shadow: -4px 0 28px rgba(33,67,106, 0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.7rem;
  align-self: flex-end;
  margin: 26px 16px 10px 0;
  cursor: pointer;
  transition: color .15s, transform .16s;
}
.mobile-menu-close:hover {
  color: var(--accent-dark);
  transform: scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 32px 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #21436a;
  font-size: 1.19rem;
  padding: 14px 0;
  border-bottom: 1.5px solid #e6f0fa;
  width: 100%;
  transition: color .17s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f0fa;
  color: var(--accent);
}

/* ============== FOOTER ================ */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 16px 16px 16px;
  max-width: 1200px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 12px;
}
.footer-top a img {
  height: 36px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  opacity: .93;
  transition: opacity .13s, color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  font-size: 1rem;
  color: #e6f0fa;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  opacity: .83;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.footer-social a img {
  height: 29px;
  transition: transform .14s, filter .14s; 
  filter: grayscale(0.3);
}
.footer-social a:hover img {
  transform: scale(1.13) rotate(-6deg);
  filter: drop-shadow(0 0 10px #e97a23) grayscale(0);
}

/* ============== HERO SECTIONS & CTA ============= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

/* ========== RESPONSIVE HEADINGS ========== */
@media (max-width: 560px) {
  h1, .h1 { font-size: 1.7rem; }
  h2, .h2 { font-size: 1.16rem; }
}

/* ========== RESPONSIVE FLEXBOX ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  section, .section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    max-width: 97vw;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .logo img,
  .footer-top a img {
    height: 32px;
  }
  .footer-social a img {
    height: 23px;
  }
}

/* ============= TABLE RESPONSIVE ============ */
@media (max-width:670px){
  table, thead, tbody, tr, td, th {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 10px 5px;
    font-size: .98rem;
  }
  th {
    font-size: 1.02rem;
  }
  tr { margin-bottom: 13px; }
}

/* =============== UTILITY CLASSES =============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 32px !important; }
.pb-2 { padding-bottom: 16px !important; }

/* =========== MAP PLACEHOLDER ============ */
.map-placeholder {
  background: #e6f0fa;
  border: 2px dashed #e97a23;
  color: #b05700;
  border-radius: 15px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  margin-top: 12px;
}

/* === CONTACT DETAILS === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #21436a;
  font-size: 1.06rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* ============== LISTS WITH ICONS (Features) ============= */
.content-wrapper ul {
  list-style: none;
  margin-bottom: 15px;
  padding-left: 0;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  background: #f7fbff;
  border-radius: 9px;
  padding: 9px 14px;
  color: #21436a;
  font-size: 1.07rem;
  font-weight: 500;
  box-shadow: 0 2px 7px rgba(33,67,106,0.07);
}
.content-wrapper ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ============= ANIMATIONS ============== */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn-secondary, .card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close,
  .footer-social a img {
    transition: all 0.17s cubic-bezier(.4,0,.2,1);
  }
}

/* ========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(33,67,106,.18);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 32px;
  font-size: 1.04rem;
}
.cookie-banner p {
  color: #21436a;
  margin: 0;
  flex: 1 1 60%;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  padding: 0.55em 1.7em;
  font-size: 0.98rem;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 6px;
    font-size: 0.95rem;
    gap: 9px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,67,106,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg .28s;
}
@keyframes fadeInBg { 0%{opacity:0;} 100%{opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 400px;
  width: 96vw;
  box-shadow: 0 8px 40px 4px rgba(33,67,106,0.18);
  padding: 34px 26px 26px 26px;
  z-index: 3600;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: modalSlideIn .27s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalSlideIn {
  from { transform: translateY(40px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-cat-desc {
  color: #444;
  font-size: 0.96rem;
  margin-left: 28px;
  margin-bottom: 5px;
  opacity: .87;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 0.98rem;
  padding: 0.54em 1.3em;
}

@media (max-width: 435px) {
  .cookie-modal {
    padding: 18px 7px 12px 7px;
    max-width: 98vw;
    font-size: 0.97rem;
  }
}

/* ========== VIBRANT + ENERGETIC MICROINTERACTIONS ========== */
.btn-primary:active,
.btn-secondary:active {
  transform: scale(.97);
}
a:focus-visible, button:focus-visible {
  outline: 2.5px solid #e97a23;
  outline-offset: 2px;
}
.card:active {
  box-shadow: 0 1px 4px #e97a23, 0 4px 22px rgba(33,67,106,0.17);
}


/* ========== OVERRIDES FOR BRAND VIBRANT/ENERGETIC ========== */
h1, h2, h3, .btn-primary, .btn-secondary {
  text-transform: none;
  letter-spacing: 0.5px;
}
h2, .btn-primary {
  background-image: linear-gradient(90deg, #21436a 0%, #e97a23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-primary, .btn-secondary {
  background-image: none !important;
  -webkit-text-fill-color: initial;
  color: #21436a;
}

/* ============== PRINT ================ */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  .section, section {
    box-shadow: none !important;
    background: #fff !important;
    padding: 0;
    margin: 0 !important;
  }
}
