/* ------------------------
   CSS RESET & BASICS
------------------------ */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,*::before,*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #18587A;
  background: #F2F7FA;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: #18587A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD55A;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #18587A;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24,88,122,0.08);
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 14px;
}

/* -------------
   NAVIGATION
-------------- */
header {
  background: #18587A;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 16px rgba(24,88,122,0.07);
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s, box-shadow 0.2s;
}
.main-nav a:hover:not(.cta-btn), .main-nav a:focus:not(.cta-btn) {
  background: #FFD55A;
  color: #18587A;
  box-shadow: 0 2px 8px rgba(255,213,90,0.16);
}
.main-nav .cta-btn {
  background: #FFD55A;
  color: #18587A;
  font-size: 1.08rem;
  padding: 9px 28px 9px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,213,90,0.15);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
  margin-left: 8px;
  letter-spacing: 0.04em;
  transition: background 0.21s, box-shadow 0.18s, color 0.18s;
  border: none;
  outline: none;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #fff;
  color: #18587A;
  box-shadow: 0 4px 24px rgba(255,213,90,0.3);
}
.main-nav img {
  height: 43px;
  width: auto;
  margin-right: 18px;
  border-radius: 6px;
}

/* MOBILE NAVIGATION BUTTON */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FFD55A;
  cursor: pointer;
  z-index: 1040;
  outline: none;
  transition: color 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: #fff;
}

/* -------------------------
   MOBILE NAVIGATION OVERLAY
-------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #18587A;
  color: #fff;
  z-index: 1090;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(.55,0,.1,1);
  display: flex;
  align-items: flex-start;
  padding: 0;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD55A;
  font-size: 2.45rem;
  margin: 22px 0 12px 28px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1100;
  outline: none;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
  line-height: 1.38;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD55A;
  color: #18587A;
}

/* Hide main-nav on mobile, show hamburger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------
   HERO & TAGLINE
------------------------ */
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  color: #18587A;
  margin-bottom: 12px;
  font-weight: 700;
  background: #FFD55A;
  display: inline-block;
  padding: 5px 18px 5px 14px;
  border-radius: 16px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(255,213,90,0.17);
  margin-top: 0;
}

/* ------------------------
   FLEX LAYOUTS & CARDS
------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.feature-grid > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(24,88,122,.09);
  padding: 26px 20px;
  margin-bottom: 20px;
  flex: 1 1 255px;
  min-width: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #FFD55A11;
  transition: box-shadow 0.2s, border 0.18s, transform 0.20s;
}
.feature-grid > li:hover {
  border: 2px solid #FFD55A;
  box-shadow: 0 6px 36px 0 rgba(255,213,90,0.22);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.feature-grid h3 {
  margin: 0 0 7px 0;
  font-size: 1.15rem;
  color: #18587A;
  font-weight: 700;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,88,122,0.11);
  background: #fff;
  padding: 28px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px #FFD55A33;
  transform: translateY(-3px) scale(1.022);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F7FA;
  border: 2px solid #FFD55A22;
  border-radius: 16px;
  min-height: 90px;
  box-shadow: 0 2px 8px rgba(24,88,122,0.08);
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #18587A;
}
.testimonial-card blockquote {
  font-size: 1.01rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
  color: #18587A;
}
.testimonial-card strong {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18587A;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 4px;
}

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

/* For FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,88,122,0.07);
  padding: 18px 20px 16px 20px;
}
.faq-item h3 {
  font-size: 1.09rem;
  color: #18587A;
  margin-bottom: 7px;
  cursor: pointer;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.faq-item > div {
  font-size: 0.99rem;
  color: #18587A;
}
.contact-hint {
  margin-top: 14px;
  background: #18587A03;
  padding: 13px 18px;
  border-radius: 8px;
}
.contact-hint a {
  color: #FFD55A;
  font-weight: 700;
}
.contact-hint a:hover, .contact-hint a:focus {
  color: #18587A;
  text-decoration: underline;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.address-block, .phone-email, .operating-hours, .map-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #18587A;
}
.address-block img, .phone-email img, .operating-hours img, .map-block img {
  height: 26px;
  width: 26px;
}

.next-steps ul {
  margin-left: 24px;
  margin-bottom: 0;
}
.next-steps li {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.faq-link a {
  color: #18587A;
  font-weight: 700;
  text-decoration: underline;
}
.faq-link a:hover { color: #FFD55A; }

/* ----------------------------
    PRICING TABLE STYLE
----------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 15px 0;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(24,88,122,0.08);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 13px;
  text-align: left;
  font-size: 1.07rem;
}
.pricing-table th {
  background: #FFD55A;
  color: #18587A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.pricing-table tbody tr:nth-child(even) {
  background: #F2F7FA;
}
.pricing-table td {
  color: #18587A;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-notes ul {
  margin-left: 24px;
  color: #18587A;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

/* ------------------------
      GENERAL BUTTONS
------------------------- */
.cta-btn {
  background: #FFD55A;
  color: #18587A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 100px;
  padding: 12px 34px;
  font-size: 1.09rem;
  cursor: pointer;
  box-shadow: 0 5px 24px rgba(255,213,90,0.17);
  margin-top: 8px;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #18587A;
  color: #FFD55A;
  box-shadow: 0 7px 30px #18587A15;
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

button {
  font-family: inherit;
}

/* --------------------------
    FOOTER
--------------------------- */
footer {
  background: #18587A;
  color: #fff;
  padding: 34px 0 14px 0;
  margin-top: 38px;
  width: 100%;
}
.footer-links, .footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-links a {
  color: #FFD55A;
  margin-right: 8px;
  font-weight: 700;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #18587A;
  background: #FFD55A;
}
.footer-contact p {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 6px;
}
.footer-contact a {
  color: #FFD55A;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
  text-decoration: underline;
}

/* --------------------------
   COOKIE CONSENT BANNER
-------------------------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #FFD55A;
  color: #18587A;
  z-index: 1200;
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 10px 40px 0 #18587A23;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 28px 18px 24px;
  font-size: 1.02rem;
  animation: banner-in 0.6s cubic-bezier(.7,0,.1,1);
}
@keyframes banner-in {
  0% { transform: translateX(-50%) translateY(100px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 8px;
  color: #18587A;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 9px 18px;
  margin-right: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 9px #FFD55A40;
}
.cookie-banner .accept-btn {
  background: #FFD55A;
  color: #18587A;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #18587A;
  color: #FFD55A;
}
.cookie-banner .reject-btn {
  background: #fff3d2;
  color: #18587A;
  border: 1.5px solid #FFD55A;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #FFD55A;
  color: #18587A;
}
.cookie-banner .settings-btn {
  background: #18587A;
  color: #FFD55A;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #FFD55A;
  color: #18587A;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 88, 122, 0.72);
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.33s cubic-bezier(.51,0,.21,1);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #18587A;
  border-radius: 20px;
  padding: 32px 28px 22px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 30px 90px 0 #18587A50;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-pop-in 0.44s cubic-bezier(.69,.1,.11,1);
}
@keyframes modal-pop-in {
  from { transform: translateY(60px) scale(0.88); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.42rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
  background: #F2F7FA;
  padding: 11px 15px;
  border-radius: 10px;
}
.cookie-modal .cookie-cat label {
  font-weight: 700;
  margin-left: 6px;
}
.cookie-modal .cookie-toggle {
  height: 22px;
  width: 44px;
  border-radius: 16px;
  background: #FFD55A77;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  margin-left: 10px;
  position: relative;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .toggle-slider {
  width: 36px;
  height: 18px;
  background: #FFD55A;
  border-radius: 16px;
  position: relative;
  transition: background 0.18s;
}
.cookie-modal .toggle-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #18587A;
  border-radius: 50%;
  transition: transform 0.16s, background 0.16s;
}
.cookie-modal .cookie-toggle input:checked + .toggle-slider {
  background: #18587A;
}
.cookie-modal .cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(16px);
  background: #FFD55A;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px #FFD55A37;
}
.cookie-modal .cookie-btn.accept-btn {
  background: #FFD55A;
  color: #18587A;
}
.cookie-modal .cookie-btn.reject-btn {
  background: #fff3d2;
  color: #18587A;
  border: 1.5px solid #FFD55A;
}
.cookie-modal .cookie-btn.close-btn {
  background: #18587A;
  color: #FFD55A;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  opacity: 0.92;
  outline: none;
}

.cookie-modal .essential {
  color: #5b686d;
  font-weight: 500;
  font-size: 0.99rem;
  margin-left: 6px;
}

.cookie-modal .modal-close-x {
  position: absolute;
  top: 14px;
  right: 15px;
  font-size: 2rem;
  line-height: 1;
  color: #FFD55A;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.17s, background 0.16s;
  z-index: 30;
}
.cookie-modal .modal-close-x:hover, .cookie-modal .modal-close-x:focus {
  color: #18587A;
  background: #FFD55A20;
}

/* ------------------------------------
   SPACING, FLEX GAPS & ALIGNMENT RULES
--------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------
   RESPONSIVE
------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid > li, .card {
    min-width: 190px;
  }
}
@media (max-width: 900px) {
  section {
    padding: 30px 8px;
    margin-bottom: 48px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.33rem;
    margin-bottom: 11px;
  }
  h3 {
    font-size: 1.05rem;
  }
  .main-nav { padding: 8px 6px; }
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, section {
    padding: 22px 6px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .feature-grid > li, .card {
    min-width: unset;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-card {
    font-size: 1rem;
    padding: 14px 10px;
  }
  .footer-links, .footer-contact {
    gap: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width:480px) {
  html { font-size: 15px; }
  h1 { font-size: 1.37rem; }
  .tagline {
    font-size: 0.99rem;
    padding: 4px 10px;
    border-radius: 11px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 6px;
    right: 6px;
    width: auto;
    max-width: 98vw;
    transform: none;
    padding: 12px 8px 12px 11px;
    font-size: 0.97rem;
    border-radius: 9px;
  }
  .cookie-modal {
    min-width: unset;
    padding: 18px 7px 11px 7px;
    border-radius: 14px;
    font-size: 0.99rem;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 3px;
  }
}

/* -------------
  UTILITIES
-------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 14px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 32px; }

/* -------------
  MICRO-INTERACTIONS
-------------- */
.cta-btn, .main-nav .cta-btn, .cookie-banner button, .cookie-modal .cookie-btn {
  transition: background 0.17s, color 0.15s, box-shadow 0.18s, transform 0.13s;
}
.card, .feature-grid > li, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, border 0.17s, transform 0.16s;
}

.card:active, .feature-grid > li:active {
  transform: scale(0.995);
  box-shadow: 0 2px 5px #FFD55A33;
}
.cta-btn:active {
  transform: scale(0.99);
}

/* -------------
  ACCESSIBILITY
-------------- */
:focus-visible {
  outline: 2px solid #FFD55A;
  outline-offset: 2px;
}

/* End of Style */
