/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, #f6f2ed 0%, #c7d162 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #275362;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #275362;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #c7d162;
  outline: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #275362;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }

p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  color: #275362;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.90);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(39,83,98,0.09), 0 1.5px 4px rgba(199,209,98,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
}

/* MAIN LAYOUT WRAPPERS */
.card-container,
.card-grid,
.content-grid,
.features,
.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(39, 83, 98, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(39, 83, 98, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(39,83,98,0.10);
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial-card p {
  color: #275362;
}
.testimonial-card strong {
  color: #275362;
  font-weight: bold;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(199,209,98,0.08);
  transform: translateY(-2px) scale(1.01);
}

/* SPECIAL SECTIONS */
.newsletter-cta form {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.newsletter-cta input[type=email] {
  border-radius: 8px;
  border: 1.2px solid #c7d162;
  padding: 12px 18px;
  font-size: 1rem;
  min-width: 200px;
  background: #fff;
  color: #275362;
  transition: border 0.17s;
}
.newsletter-cta input[type=email]:focus {
  border: 1.2px solid #275362;
}
.newsletter-cta button {
  border-radius: 8px;
  background: #c7d162;
  color: #275362;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.newsletter-cta button:hover {
  background: #275362;
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #275362 60%, #c7d162 100%);
  color: #fff;
  box-shadow: 0 2px 6px 0 rgba(39,83,98,0.10);
  padding: 0 0 6px 0;
  position: relative;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  min-height: 76px;
}
header a img {
  height: 40px;
  margin-right: 20px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #c7d162;
  color: #275362;
}
.cta-btn {
  background: #c7d162;
  color: #275362;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 24px;
  margin-left: auto;
  margin-right: 8px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  box-shadow: 0 2px 8px rgba(199, 209, 98, 0.08);
  border: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #275362;
  color: #fff;
  box-shadow: 0 4px 18px rgba(39,83,98,0.12);
}

.mobile-menu-toggle {
  display: none;
  background: #c7d162;
  color: #275362;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 4px 16px;
  margin-left: 10px;
  line-height: 1;
  z-index: 1201;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #275362;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #c7d162 60%, #f6f2ed 100%);
  box-shadow: -2px 0 24px rgba(39, 83, 98, 0.11);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.81,.37,.36,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 26px 26px 12px 0;
  background: #275362;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #c7d162;
  color: #275362;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding: 0 38px;
}
.mobile-nav a {
  color: #275362;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: none;
  padding: 12px 0;
  border-radius: 7px;
  width: 100%;
  text-align: right;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #275362;
  color: #fff;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    align-items: center;
    min-height: 58px;
    gap: 6px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 14px 6px;
  }
  section {
    padding: 20px 4px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

/* FOOTER */
footer {
  background: #275362;
  color: #fff;
  padding: 48px 0 14px 0;
  box-shadow: 0 -2px 12px rgba(199, 209, 98, 0.06);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.footer-nav img {
  height: 48px;
  margin-right: 20px;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 12px;
  align-items: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.85;
  padding: 0 2px;
  transition: color 0.19s, opacity 0.19s;
}
.footer-nav a:hover {
  color: #c7d162;
  opacity: 1;
}
.footer-contact {
  font-size: 0.98rem;
  margin-bottom: 16px;
  color: #fff;
}
.footer-legal {
  font-size: 0.88rem;
  color: #c7d162;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav nav {
    gap: 10px;
  }
}

/* SPECIAL CARD/CATEGORY, BLOG, REVIEW, FAQ, TEAM */
.team-bio {
  background: #f6f2ed;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(199,209,98,0.04);
  padding: 18px 16px;
  margin-bottom: 12px;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.review-summary, .blog-summary {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(199,209,98,0.08);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-summary:hover,
.blog-summary:hover {
  box-shadow: 0 6px 24px rgba(39, 83, 98, 0.13);
  transform: translateY(-2px) scale(1.015);
}

.comparison-table {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(199,209,98,0.05);
  padding: 22px 18px;
  margin-bottom: 16px;
  min-width: 240px;
}
.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.criteria-grid > div {
  flex: 1 1 180px;
  background: #f6f2ed;
  padding: 14px 10px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(39,83,98,0.04);
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(199,209,98,0.07);
  padding: 16px 14px;
  margin-bottom: 12px;
  flex: 1 1 220px;
}

.contact-details p,
.contact-details img {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}
.map-location {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

/* BUTTONS & INTERACTIONS */
button,
input[type=submit],
.cta-btn,
.newsletter-cta button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.16s, transform 0.18s;
}
button:active,
input[type=submit]:active,
.cta-btn:active {
  transform: scale(0.97);
}

/* SPACING PATTERNS (MANDATORY) */
.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 FLEX CHANGES */
@media (max-width: 900px) {
  .section { padding: 28px 7px; }
  .content-wrapper, .card,
  .review-summary, .blog-summary,
  .comparison-table {
    padding: 15px 7px;
  }
  .reviews-grid, .card-container, .content-grid, .criteria-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .reviews-grid, .card-container, .content-grid, .criteria-grid, .faq-accordion {
    flex-direction: column;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #c7d162;
  box-shadow: 0 -3px 24px rgba(39,83,98,0.08);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 6vw 24px 18px;
  transition: transform 0.33s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  color: #275362;
  font-size: 1rem;
  flex: 1 1 240px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 8px;
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  background: #c7d162;
  color: #275362;
  border: none;
  margin-left: 0;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner button.accept {
  background: #c7d162;
  color: #275362;
}
.cookie-banner button.reject {
  background: #275362;
  color: #fff;
}
.cookie-banner button.settings {
  background: #fff;
  color: #275362;
  border: 1.5px solid #c7d162;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #275362;
  color: #fff;
}
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39, 83, 98, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10050;
  transition: opacity 0.23s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__dialog {
  background: #fff;
  padding: 40px 22px;
  border-radius: 18px;
  width: 90vw;
  max-width: 410px;
  box-shadow: 0 8px 48px rgba(39, 83, 98, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__header {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #275362;
  margin-bottom: 9px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #275362;
}
.cookie-category.essential label {
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: #c7d162;
  color: #275362;
  border-radius: 50%;
  width: 34px; height: 34px;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: #275362;
  color: #fff;
}

/* Miscellaneous: Polishing lists & icons inside text */
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img {
  width: 22px;
  height: 22px;
}

/* Remove unwanted margin */
main > section:last-child { margin-bottom: 0; }

/* Animations & transitions */
.section, .content-wrapper, .card, .review-summary, .blog-summary,
.comparison-table, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.22s, background 0.16s;
}

/* Hide scrollbar for mobile menu */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* Accessibility focus styles */
a:focus, button:focus,
.cookie-modal__close:focus, .cta-btn:focus {
  box-shadow: 0 0 0 2.5px #c7d162;
  outline: none;
}

/* Ensuring no grid or columns used */
/* END OF CSS */
