/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: linear-gradient(135deg, #ECECEC 0%, #ffffff 100%);
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2467A2;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #207347;
}
ul, ol {
  margin-left: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2467A2;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* HEADER/NAV */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(36,103,162,0.05);
  z-index: 10;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  min-height: 72px;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2467A2;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.24s, color 0.24s;
  font-weight: 500;
}
.main-nav .cta-header {
  margin-left: auto;
  background: linear-gradient(90deg, #2467A2 0%, #57A773 100%);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(36,103,162,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
}
.main-nav a:not(.cta-header):hover,
.main-nav a:not(.cta-header):focus {
  background: #ececec;
  color: #207347;
}
.main-nav .cta-header:hover, .main-nav .cta-header:focus {
  background: linear-gradient(90deg, #207347 0%, #2467A2 100%);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  margin-left: auto;
  color: #2467A2;
  cursor: pointer;
  padding: 12px 16px;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(.logo):not(.cta-header) {
    display: none;
  }
  .main-nav .cta-header {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(36,103,162,0.10);
  transition: transform 0.5s cubic-bezier(.35,1.05,.36,1.00);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 28px;
  padding-left: 42px;
  padding-right: 24px;
  padding-bottom: 36px;
  transform: translateX(-110vw);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #2467A2;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 12px;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: #207347; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  color: #2467A2;
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ececec;
  color: #207347;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(100deg, #2467A2 0%, #57A773 90%);
  color: #fff;
  padding: 60px 0 72px 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.hero-section h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(36,103,162,0.22);
}
.hero-section p {
  color: #ebf6fc;
  font-size: 1.125rem;
  max-width: 600px;
  text-align: center;
}
.cta-main {
  background: linear-gradient(90deg, #2467A2 0%, #57A773 80%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 34px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 1.17rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 13px rgba(36,103,162,0.10);
  margin-top: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s;
  text-align: center;
  display: inline-block;
}
.cta-main:hover,
.cta-main:focus {
  background: linear-gradient(90deg, #207347 0%, #2467A2 100%);
  box-shadow: 0 4px 14px rgba(36,103,162,0.18);
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
}
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.features-section .feature {
  background: #F8FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,103,162,0.06);
  padding: 28px 24px 18px 24px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.features-section .feature:hover,
.features-section .feature:focus-within {
  box-shadow: 0 6px 24px rgba(36,103,162,.13);
  transform: translateY(-4px) scale(1.015);
}
.features-section .feature img {
  margin-bottom: 8px;
  width: 38px;
  height: 38px;
}
.features-section .feature h3 {
  color: #2467A2;
  font-size: 1.2rem;
}
.features-section .feature p {
  color: #1b2632;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ABOUT PREVIEW, ABOUT, TEAM, USP */
.about-preview,
.about-section,
.team-section,
.usp-section {
  background: #F8FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,103,162,0.04);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #222;
}
.text-section ul,
.text-section ol {
  margin-left: 18px;
  padding-left: 10px;
  font-size: 1rem;
}
.usps-section, .usp-section { background: #fff; }
.usps-section .usp-list,
.usp-section .usp-grid {
  width: 100%;
  margin-top: 10px;
}
.usps-section .usp-list ul,
.usp-section .usp-grid ul {
  list-style: disc;
  padding-left: 18px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.usps-section .usp-list ul li,
.usp-section .usp-grid ul li {
  font-size: 1.06rem;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(90deg, #2467A2 0%, #57A773 73%);
  color: #fff;
  padding: 32px 0;
  margin-bottom: 0;
}
.cta-strip .content-wrapper {
  align-items: center;
  gap: 14px;
}
.cta-strip p {
  color: #ebf6fc;
  font-size: 1.18rem;
  text-align: center;
  margin-bottom: 4px;
}
.cta-strip .cta-main {
  margin-top: 4px;
}

/* TESTIMONIALS */
.testimonials-preview,
.testimonials-section {
  background: #F8FBFF;
  padding-top: 48px;
  padding-bottom: 48px;
}
.testimonials-preview h2, .testimonials-section h1 {
  color: #2467A2;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,103,162,0.07);
  padding: 24px 28px;
  min-width: 270px;
  max-width: 400px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #2467A2;
  position: relative;
  color: #1b2632;
  transition: box-shadow 0.2s, translateY 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(36,103,162,0.14);
  transform: translateY(-3px) scale(1.009);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #1b2632;
  margin-bottom: 8px;
}
.testimonial-author {
  color: #207347;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 0;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star-rating img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* REVIEW INVITE */
.review-invite-section {
  background: #fff;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(36,103,162, 0.05);
  margin-bottom: 40px;
}
.review-invite-section .content-wrapper {
  align-items: flex-start;
}
.review-invite-section h2 {
  color: #207347;
  font-size: 1.3rem;
}
.review-invite-section a {
  color: #2467A2;
  font-weight: 600;
}

/* PRICING */
.pricing-section {
  background: #F8FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(36,103,162,0.07);
}
.price-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.price-tables table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(36,103,162,0.06);
  overflow: hidden;
  flex: 1 1 260px;
}
.price-tables th, .price-tables td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1.03rem;
}
.price-tables th {
  background: #2467A2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.price-tables tr:nth-child(odd) td {
  background: #f3fafd;
}
.price-tables tr:nth-child(even) td {
  background: #fff;
}
.comparison-chart {
  margin-top: 20px;
  background: #ececec;
  border-radius: 8px;
  padding: 16px 24px;
}
.comparison-chart h2 { color: #207347; }
.comparison-chart ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CONTACT */
.contact-section, .info-section {
  background: #F8FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(36,103,162,0.06);
  margin-bottom: 40px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.07rem;
}
.contact-details li, .address p {
  display: flex;
  align-items: center;
  gap: 11px;
}

.opening-hours h3 { font-size: 1.07rem; color: #2467A2; margin-bottom: 2px; }

/* LEGAL, COOKIE, GDPR, THANKS */
.legal-section, .thanks-section {
  background: #F8FBFF;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(36,103,162,0.05);
  margin-bottom: 30px;
}
.privacy-policy-content, .gdpr-content, .terms-of-use-content, .cookie-policy-content {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1.05rem;
}
.privacy-policy-content ul,
.gdpr-content ul,
.terms-of-use-content ul,
.cookie-policy-content ul {
  gap: 6px;
  flex-direction: column;
}
/* FAQ */
.faq-section {
  background: #F8FBFF;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(36,103,162,0.04);
  margin-bottom: 40px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 5px rgba(36,103,162,0.05);
  padding: 16px 22px;
  color: #1b2632;
  margin-bottom: 12px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 4px 13px rgba(36,103,162,0.14);
  transform: translateY(-2px);
}
.faq-item h2 {
  font-size: 1.14rem;
  margin-bottom: 9px;
  color: #207347;
  cursor: pointer;
}
.faq-item div > p {
  color: #17405a;
  font-size: 1.04rem;
}
.contact-prompt,
.contact-prompt p {
  font-size: 1.03rem;
  margin-top: 19px;
  color: #2467A2;
}
.contact-prompt a {
  color: #207347;
  text-decoration: underline;
}

/* THANK YOU */
.thanks-section {
  padding-top: 40px;
  padding-bottom: 36px;
  text-align: center;
  margin-bottom: 60px;
}
.thanks-section h1 {
  color: #207347;
}
.thanks-section ul {
  list-style: disc;
  text-align: left;
  display: inline-block;
  margin-top: 13px;
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background: #F8FBFF;
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 20px;
  width: 100%;
}
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}
.footer-logo {
  width: 60px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #2467A2;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #207347;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 1rem;
  color: #2467A2;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: text-bottom;
}
.footer-legal {
  color: #207347;
  font-size: 0.95rem;
  margin-top: 7px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9900;
  width: 100vw;
  background: #2467A2;
  color: #fff;
  box-shadow: 0 -2px 20px rgba(36,103,162,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 10px 14px 10px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.25,.62,.45,1);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-content {
  max-width: 700px;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 5px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 1.01rem;
  font-weight: 700;
  margin: 0 1px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(36,103,162,0.12);
}
.cookie-btn.accept {
  background: #57A773;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #207347;
}
.cookie-btn.reject {
  background: #ECECEC;
  color: #2467A2;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #dedede;
  color: #207347;
}
.cookie-btn.settings {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 18px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #2467A2;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,34,34,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s;
  padding: 24px 4px;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(36,103,162,0.18);
  padding: 36px 28px;
  max-width: 430px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #2467A2;
  align-items: center;
}
.cookie-modal-dialog h2 {
  color: #207347;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.01rem;
  font-family: 'Montserrat', sans-serif;
  color: #2467A2;
}
.cookie-switch {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  background: #ececec;
  position: relative;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.cookie-switch[aria-checked="true"] {
  background: #57A773;
}
.cookie-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 3px rgba(50,50,50,0.04);
  transition: left 0.23s;
}
.cookie-switch[aria-checked="true"] .cookie-switch-thumb {
  left: 21px;
}
.cookie-modal-btns {
  display: flex;
  gap: 13px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 115px;
  padding: 9px 14px;
}

/* FLEXBOX/MARGIN SPACING PATTERNS PER INSTRUCTION */
.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;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .price-tables {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .hero-section { padding: 42px 0 60px 0; }
  .features-section .feature-grid { gap: 14px; }
  .features-section .feature { padding: 21px 13px 14px 13px; min-width: 170px; }
  .testimonial-slider, .testimonial-list { gap: 14px; }
  .testimonial-card { padding: 14px 11px; min-width: 180px; max-width: 100%; }
  .footer-wrapper { gap: 8px; }
}
@media (max-width: 768px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .main-nav { gap: 8px; min-height: 62px; }
  .content-wrapper { gap: 13px; }
  .features-section .feature-grid, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px !important;
  }
  .features-section .feature {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    margin-bottom: 13px;
  }
  .footer-wrapper { gap: 6px; }
  .price-tables { flex-direction: column; gap: 7px; }
  .cookie-modal-dialog { max-width: 100%; padding: 22px 8px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.26rem; }
  h2 { font-size: 1.09rem; }
  .footer-logo { width: 40px; }
  .hero-section { padding: 26px 0 32px 0; }
  .cta-main { padding: 11px 13px; font-size: 1rem; }
}

/* ANIMATIONS & TRANSITIONS */
.cta-main, .main-nav .cta-header, .cookie-btn, .cookie-switch, .faq-item {
  transition: all .2s cubic-bezier(.4,0,.2,1);
}

/* FOCUS, ACCESSIBILITY */
a:focus, button:focus, .cta-main:focus, .main-nav .cta-header:focus, .cookie-btn:focus {
  outline: 2px solid #207347;
  outline-offset: 2px;
}

/* SCROLLBAR MODERN */
::-webkit-scrollbar { width: 9px; background: #ECECEC; }
::-webkit-scrollbar-thumb { background: #2467A2; border-radius: 4px; }

/* HIDE/SHOW */
.hide { display: none !important; }

/* ----------- END CSS ----------- */