/* ======== CSS RESET & NORMALIZE ======== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #23496D;
  background: #fafdfe;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #36A9B3;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #FF5A36;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.6em;
}
strong {
  font-weight: 700;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(22, 114, 120, 0.09);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 18px 14px;
  border-bottom: 1px solid #EAEFF2;
  text-align: left;
}
th {
  background: #36A9B3;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #167278;
  margin-top: 16px;
}
dl dd {
  margin-left: 0;
  margin-bottom: 12px;
  color: #23496D;
}

/* ======== FONTS ======== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #167278;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 22px;
  color: #23496D;
}
h2 {
  font-size: 1.7rem;
  color: #167278;
}
h3 {
  font-size: 1.3rem;
  color: #36A9B3;
}
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}
p, .text-section p, .content-wrapper p, .feature p {
  font-size: 1rem;
  color: #23496D;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ======== GENERAL CONTAINER & SECTION ======== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 900px) {
  .section {
    padding: 60px 0px;
    margin-bottom: 80px;
  }
}

/* ======== MAIN NAVIGATION ======== */
header {
  background: #23496D;
  color: #fff;
  box-shadow: 0 2px 10px rgba(54,169,179,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px;
  position: relative;
}
.main-nav > a img {
  height: 40px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.main-nav li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.25s, color 0.17s;
}
.main-nav li a:hover, .main-nav li a:focus, .main-nav li a.active {
  background: #36A9B3;
  color: #fff;
}
.cta-button {
  background: #FF5A36;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
  padding: 11px 32px;
  border: none;
  border-radius: 7px;
  outline: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, transform 0.14s;
  box-shadow: 0 4px 16px rgba(255, 90, 54, 0.11);
  margin-left: 20px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #36A9B3;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(54, 169, 179, 0.18);
}
.cta-button.secondary {
  background: #FFF;
  color: #FF5A36;
  border: 2px solid #FF5A36;
  margin: 0 0 0 18px;
  box-shadow: none;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #FF5A36;
  color: #fff;
}

/* ======== HERO ======== */
.hero {
  background: linear-gradient(90deg, #EAEFF2 80%, #36A9B3 100%);
  min-height: 360px;
  padding: 52px 0 38px 0;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 6px solid #FF5A36;
}
.hero h1 {
  color: #FF5A36;
  font-size: 2.6rem;
}
.hero p {
  color: #23496D;
  font-size: 1.17rem;
}
@media (min-width: 700px) {
  .hero h1 {font-size: 3.5rem;}
  .hero p {font-size: 1.3rem;}
}

/* ======== FLEXBOX LAYOUT SYSTEMS ======== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(54,169,179,0.09);
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 320px;
  padding: 30px 20px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.feature img {
  height: 40px;
  background: #EAEFF2;
  padding: 11px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 32px rgba(54,169,179,0.16);
  transform: translateY(-3px) scale(1.02);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #23496D;
}
.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 8px;
}
.trust-badges img {
  height: 36px;
}

/* Card containers & Cards (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(54,169,179,0.07);
  padding: 36px 28px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 40px rgba(22,114,120,0.18);
  transform: scale(1.02);
}
.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-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(54,169,179,0.12);
  padding: 28px 32px 20px 28px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  border-left: 6px solid #FF5A36;
}
.testimonial-rating {
  font-size: 1.32rem;
  color: #36A9B3;
  letter-spacing: 0.14em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  color: #23496D;
  font-style: italic;
}
.testimonial-author {
  font-size: 1.06em;
  color: #FF5A36;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Extra Section Patterns from Instructions */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px rgba(22, 114, 120, 0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.service-item img {
  height: 46px;
  background: #EAEFF2;
  border-radius: 7px;
  padding: 10px;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 6px 32px rgba(255,90,54,0.10);
  transform: scale(1.015);
}

/* FAQ accordion and preview */
.faq-accordion, .faq-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(54,169,179,0.06);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FF5A36;
  font-size: 1.15rem;
  margin-top: 12px;
}
.faq-accordion dd {
  color: #23496D;
  margin-left: 0;
  margin-bottom: 14px;
  padding-left: 10px;
}

/* Contact details, Map, CTAs */
.contact-details {
  background: #f6fdff;
  border-radius: 11px;
  padding: 20px 18px;
  margin: 20px 0 28px 0;
  box-shadow: 0 2px 12px rgba(36,73,109,0.06);
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #36A9B3;
  border-radius: 12px;
  padding: 14px 24px;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 28px;
}
.map-placeholder img {
  height: 38px;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Text sections */
.text-section {
  margin-bottom: 26px;
}
.text-section ul {
  margin-bottom: 14px;
  padding-left: 1.3em;
}
.text-section li {
  margin-bottom: 0.7em;
}

/* ======== FOOTER ======== */
footer {
  background: #23496D;
  color: #fff;
}
footer section {
  padding: 44px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 2px 5px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #36A9B3;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 24px;
  width: 24px;
}
.footer-brand span {
  font-size: 1rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-contact {
  display: flex;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.98rem;
}

/* ======== MOBILE NAVIGATION ======== */
.mobile-menu-toggle {
  display: block;
  background: #FF5A36;
  border: none;
  color: #fff;
  font-size: 2.08rem;
  border-radius: 6px;
  padding: 6px 16px 8px 16px;
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 1012;
  cursor: pointer;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #36A9B3;
}
@media (min-width: 950px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23496DE6;
  z-index: 3001;
  transform: translateX(-105vw);
  transition: transform 0.34s cubic-bezier(0.7,.15,0.35,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 3002;
  cursor: pointer;
  opacity: 0.91;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FF5A36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 85px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.18s, color 0.16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #36A9B3;
  color: #fff;
}
@media (min-width: 950px) {
  .mobile-menu {display: none;}
  .main-nav ul {display: flex;}
}
@media (max-width: 949px) {
  .main-nav ul,
  .main-nav .cta-button {
    display: none !important;
  }
}

/* ======== COOKIE CONSENT BANNER & MODAL ======== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #23496D;
  color: #fff;
  width: 100%;
  z-index: 3500;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -6px 30px rgba(36,73,109,0.15);
  padding: 20px 20px 12px 20px;
  gap: 14px;
  animation: slideUp 0.33s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(60px); }
  to { transform: translateY(0); }
}
.cookie-banner__text {
  font-size: 1.11rem;
  color: #fff;
  margin-bottom: 10px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.cookie-btn {
  background: #FF5A36;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 2px;
  transition: background 0.15s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #36A9B3;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.settings {
  background: #fff;
  color: #23496D;
  border: 2px solid #36A9B3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #36A9B3;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,73,109,0.89);
  z-index: 3900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 95%;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 12px 48px rgba(36, 73, 109, 0.20);
  color: #23496D;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop 0.22s;
}
@keyframes modalPop {
  from {transform: scale(0.92) translateY(48px);}
  to {transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #FF5A36;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7fcfd;
  padding: 10px 16px;
  border-radius: 8px;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: #36A9B3;
  width: 18px; height: 18px;
}
.cookie-category-label {
  font-weight: 600;
  color: #23496D;
}
.cookie-category-desc {
  font-size: 0.96em;
  color: #556;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #36A9B3;
  font-size: 2.3rem;
  position: absolute;
  top: 17px; right: 20px;
  cursor: pointer;
  z-index: 3902;
  opacity: 0.75;
  transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FF5A36;
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 950px) {
  .container { max-width: 97vw; }
  .feature {
    max-width: 480px;
    flex: 1 1 320px;
  }
}
@media (max-width: 800px) {
  .feature-grid, .service-list, .testimonial-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .testimonial-card, .service-item, .card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.15rem;}
  .section {
    padding: 29px 6px 28px 6px;
    margin-bottom: 32px;
  }
  .main-nav {
    padding: 10px 8px;
    gap: 8px;
  }
  .hero {
    min-height: 180px;
    padding: 21px 0 27px 0;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .footer-contact {
    font-size: 0.91rem;
  }
  .cookie-modal {
    max-width: 96vw;
    padding: 24px 8px 20px 8px;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* ======== VIBRANT/ENERGETIC ADD-ONS ======== */
::-webkit-scrollbar {
  width: 12px;
  background: #EAEFF2;
}
::-webkit-scrollbar-thumb {
  background: #36A9B3;
  border-radius: 12px;
}

/* Slight pulse effect for buttons on hover */
.cta-button:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* Shadows for energetic effect */
.feature, .service-item, .card, .testimonial-card, .faq-accordion, .faq-preview {
  transition: box-shadow 0.18s, transform 0.14s;
}

/* Micro-transition for table row highlight on hover */
tbody tr:hover {
  background: #F1FCFD;
}

/* Energetic Accent: underline energetic highlight */
.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: '';
  display: block;
  width: 40px;
  height: 6px;
  background: #FF5A36;
  position: absolute;
  left: 0; bottom: 0;
  z-index: 1;
  border-radius: 3px;
}

/* Semantic focus ring */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2px solid #167278;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #36A9B320;
}

/* Hide default appearance for some elements */
input[type='checkbox'], input[type='radio'] {
  accent-color: #36A9B3;
}

/* ====== Misc ====== */
[hidden] { display: none !important; }

/* VIBRANT micro pulse for some hover/focus states */
.feature:hover, .feature:focus,
.service-item:hover, .service-item:focus,
.card:hover, .card:focus {
  animation: pulseUp 0.14s; }
@keyframes pulseUp {
  0% { box-shadow: 0 4px 12px rgba(54,169,179,0.08); }
  100% { box-shadow: 0 6px 24px rgba(54,169,179,0.17); }
}

/* Ensure no element overlaps due to layout spacing! All content spaced by at least 20px */
