/* --- CSS RESET / NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F5F5F5;
  color: #202A36;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #336699;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21B573;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  background: none;
  border: none;
}
:focus {
  outline: 2px solid #336699;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #23324B;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #2B425F;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #336699;
  margin-bottom: 10px;
}
h1, h2, h3 {
  line-height: 1.3;
}
strong, b {
  font-weight: 600;
}
p, ul, ol, blockquote, cite {
  color: #234056;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 10px;
}
blockquote {
  border-left: 4px solid #21B573;
  padding-left: 16px;
  font-size: 1rem;
  color: #23324B;
  font-style: italic;
  background: #F8FAFB;
  margin-bottom: 8px;
}
cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: #5a7184;
  margin-top: 8px;
}

/* --- CONTAINER AND LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(51,102,153,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(51,102,153,0.04);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  max-height: 42px;
  width: auto;
}

/* --- MAIN NAVIGATION --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #23324B;
  padding: 8px 0;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
.main-nav a.cta-btn {
  color: #fff;
  background: #336699;
  border-radius: 24px;
  padding: 10px 26px;
  font-weight: 700;
  margin-left: 24px;
  box-shadow: 0 2px 6px rgba(51,102,153,0.07);
  transition: background 0.2s,color 0.2s,box-shadow 0.2s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #21B573;
  color: #fff;
  box-shadow: 0 4px 12px rgba(51,102,153,0.12);
}

.main-nav a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #21B573;
  border-radius: 1px;
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

@media (max-width: 1023px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a.cta-btn {
    margin-left: 10px;
    padding: 10px 18px;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.97rem; }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #336699;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1601;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9F1F8;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,50,75,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.175,1);
  z-index: 1600;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  margin: 18px 0 10px 24px;
  color: #fff;
  background: #336699;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
  z-index: 1702;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #21B573;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 20px;
  width: 80vw;
  max-width: 350px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 9px 0;
  transition: color 0.15s,background 0.15s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23324B;
  color: #21B573;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(93deg, #336699 70%, #21B573 130%);
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 340px;
  margin-bottom: 36px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 650px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: -1px;
}
.hero p {
  color: #E9F1F8;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cta-btn-large {
  background: #21B573;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 34px;
  padding: 18px 42px;
  margin-top: 14px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(51,102,153,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
  display: inline-block;
}
.cta-btn-large:hover, .cta-btn-large:focus {
  background: #336699;
  color: #fff;
  box-shadow: 0 8px 22px rgba(33,181,115,0.13);
}

/* --- BUTTONS --- */
.cta-btn, .secondary-cta {
  background: #336699;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 28px;
  padding: 12px 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(51,102,153,0.06);
  text-decoration: none;
  border: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus, .secondary-cta:hover, .secondary-cta:focus {
  background: #21B573;
  color: #fff;
  box-shadow: 0 6px 18px rgba(33,181,115,0.11);
}
.secondary-cta {
  background: #E9F1F8;
  color: #336699;
  border: 1px solid #336699;
  margin-top: 8px;
  padding: 10px 24px;
  box-shadow: none;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #336699;
  color: #fff;
  border-color: #21B573;
}

button[disabled], .cta-btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
  background: #a3b7d2;
}

/* --- CARD CONTAINERS & FLEXBOX GRIDS --- */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(51,102,153,0.06);
  padding: 30px 24px;
  min-width: 260px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.features-grid > div {
  background: #F8FAFB;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(51,102,153,0.05);
  padding: 22px 20px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .features-grid {
    gap: 20px;
  }
  .features-grid > div, .card {
    min-width: 180px;
    padding: 16px 10px;
  }
  .card, .features-grid > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 700px) {
  .features-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(51,102,153,0.08);
  margin-bottom: 20px;
  flex-direction: column;
  margin-top: 18px;
  min-width: 220px;
  max-width: 750px;
}
.testimonial-card blockquote {
  color: #23324B;
  font-size: 1.07rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.testimonial-rating {
  color: #21B573;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.testimonial-card cite {
  color: #5A7184;
  margin-top: 10px;
  font-size: 0.97rem;
}

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

.assurance-message, .assurance-text {
  color: #336699;
  font-size: 1.06rem;
  background: #F0F6FC;
  border-radius: 10px;
  padding: 10px 18px;
  margin-top: 14px;
  font-weight: 500;
}

/* --- PRODUCT CARDS ON PRODUCT PAGE --- */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(51,102,153,0.08);
  flex: 1 1 280px;
  max-width: 370px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
}
.product-card h2 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
.product-card ul {
  margin-bottom: 0.75em;
  font-size: 1em;
  color: #234056;
}
.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.benefit-tags span {
  background: #E9F1F8;
  color: #336699;
  font-size: 0.97em;
  border-radius: 16px;
  padding: 4px 14px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .product-cards {
    flex-direction: column;
    gap: 16px;
  }
  .product-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* --- ARTICLES & TIPS (ADVICE PAGE) --- */
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.article-preview {
  background: #F8FAFB;
  border-radius: 12px;
  padding: 20px 16px 14px 16px;
  box-shadow: 0 2px 8px rgba(51,102,153,0.04);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.article-preview h2 {
  font-size: 1.16rem;
  color: #336699;
}
.article-preview p {
  margin-bottom: 8px;
  font-size: 1em;
}
.article-preview a {
  color: #21B573;
  font-weight: 600;
  font-size: 0.98rem;
}
.article-preview a:hover, .article-preview a:focus {
  color: #336699;
}
@media (max-width: 700px) {
  .articles-list {
    flex-direction: column;
    gap: 10px;
  }
  .article-preview {
    min-width: 120px;
    max-width: 100%;
  }
}

.categories {
  display: flex;
  gap: 10px;
  font-size: 0.98em;
  color: #21B573;
  margin-top: 8px;
  flex-wrap: wrap;
}
.categories span {
  background: #E9F1F8;
  border-radius: 10px;
  padding: 4px 14px;
  margin-right: 0;
}
.highlighted-tip {
  background: #E9F1F8;
  border-left: 5px solid #21B573;
  border-radius: 12px;
  padding: 13px 20px 13px 16px;
  color: #234056;
  font-size: 1.08rem;
  margin-top: 8px;
  box-shadow: 0 1px 6px rgba(33,181,115,0.04);
  font-style: italic;
}
.author-credit {
  font-size: 0.95rem;
  color: #336699;
  margin-top: 8px;
  font-style: normal;
}

/* --- ACCORDION FAQ --- */
.accordion-faqs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.accordion-faqs h3 {
  cursor: pointer;
  background: #F0F6FC;
  border-radius: 8px;
  padding: 10px 18px;
  color: #336699;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
  transition: background 0.15s;
}
.accordion-faqs h3.active, .accordion-faqs h3:focus {
  background: #21B573;
  color: #fff;
}
.accordion-faqs div {
  padding: 12px 18px 12px 22px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  color: #23324B;
  display: none;
  font-size: 1rem;
}
.accordion-faqs .open {
  display: block;
}

/* --- FORM ELEMENTS --- */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.input-group label {
  font-weight: 500;
  color: #2B425F;
  font-size: 1rem;
}
.input-group input, .input-group textarea {
  padding: 9px 11px;
  border: 1px solid #cfdde8;
  border-radius: 7px;
  font-size: 1rem;
  background: #F8FAFB;
  color: #2B425F;
  margin-top: 2px;
  transition: border-color 0.18s;
  resize: vertical;
}
.input-group input:focus, .input-group textarea:focus {
  border-color: #336699;
}
.input-group textarea {
  min-height: 76px;
  max-height: 320px;
}

.contact-details {
  margin-top: 20px;
  font-size: 1rem;
  color: #23324B;
  background: #F8FAFB;
  padding: 20px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(51,102,153,0.04);
}
.contact-details h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.contact-details p {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-details img,
.footer-contact img, .footer-brand img {
  width: 19px;
  height: 19px;
  margin-right: 3px;
  vertical-align: bottom;
}

.map-embed {
  margin: 8px 0 10px 0;
}

/* --- FOOTER --- */
footer {
  background: #23324B;
  color: #E9F1F8;
  font-size: 0.98rem;
  padding: 44px 0 24px 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-menu a {
  color: #E9F1F8;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 0;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #21B573;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #E9F1F8;
  margin-top: 12px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-meta {
  color: #7CA4CF;
  margin-top: 19px;
  font-size: 0.93rem;
  letter-spacing: 0;
  text-align: left;
}
@media (max-width: 900px) {
  footer .container {
    gap: 20px;
  }
}
@media (max-width: 680px) {
  footer .container, .footer-menu, .footer-contact {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

/* --- POLICY CONTENT (PRIVACY/TERMS/RODO/COOKIES) --- */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #F8FAFB;
  border-radius: 10px;
  padding: 26px 20px;
  box-shadow: 0 1px 8px rgba(51,102,153,0.05);
}
.policy-content section {
  margin-bottom: 8px;
}
.policy-content h2 {
  font-size: 1.18rem;
  color: #336699;
}

/* --- SPECIAL THANK YOU --- */
.next-steps-info ul { margin-left: 1em; }
.next-steps-info li {
  margin-bottom: 7px;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  background: #E9F1F8;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 14px;
  font-size: 1rem;
  color: #336699;
  font-weight: 500;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #23324B;
  color: #fff;
  box-shadow: 0 -2px 22px rgba(51,102,153,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 24px 12px;
  z-index: 4000;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity 0.25s, transform 0.24s;
  font-size: 0.99rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1 1 260px;
  margin-bottom: 6px;
  color: #F5F5F5;
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-top: 6px;
  background: #21B573;
  border: none;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
  outline: none;
}
.cookie-banner .cookie-btn.secondary {
  background: #336699;
}
.cookie-banner .cookie-btn.plain {
  background: transparent;
  color: #21B573;
  border: 1px solid #21B573;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #2B425F;
  color: #fff;
  border-color: #2B425F;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #21B573;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 8px 20px 8px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin-left: 0;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,50,75,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4025;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-box {
  background: #fff;
  color: #23324B;
  border-radius: 16px;
  max-width: 420px;
  width: 92vw;
  padding: 32px 20px 28px 20px;
  box-shadow: 0 14px 80px rgba(51,102,153,0.24);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.cookie-modal-title {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #336699;
  font-weight: 700;
}
.cookie-modal-desc {
  font-size: 1.05rem;
  color: #234056;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFB;
  border-radius: 10px;
  padding: 10px 16px;
}
.cookie-category label {
  font-weight: 500;
  color: #2B425F;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: #21B573;
}
.cookie-category.essential input {
  accent-color: #336699;
}
.cookie-category input:disabled {
  opacity: 0.7;
  cursor: default;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close {
  position: absolute;
  top: 16px; right: 18px;
  background: #336699;
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #21B573;
}

/* --- RESPONSIVE TYPOGRAPHY --- */
@media (max-width: 600px) {
  h1, .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .hero {
    min-height: 180px;
    padding: 30px 0;
  }
  .cta-btn-large {
    font-size: 1.07rem;
    padding: 13px 13vw;
  }
}

/* --- MICRO-INTERACTIONS & HOVERS --- */
section, .card, .product-card, .features-grid > div, .testimonial-card, .article-preview {
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .product-card:hover, .features-grid > div:hover, .testimonial-card:hover, .article-preview:hover {
  box-shadow: 0 8px 32px rgba(51,102,153,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* --- FOCUS STATES FOR INTERACTIVE ELEMENTS --- */
.cta-btn:focus, .cta-btn-large:focus, .secondary-cta:focus, input:focus, textarea:focus, select:focus, .footer-menu a:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid #21B573;
  outline-offset: 2px;
  z-index: 100;
}

/* --- MISCELLANEOUS AND ALIGNMENT --- */
ul, ol {
  padding-left: 1.23em;
}
li {
  margin-bottom: 7px;
}
hr {
  border: none;
  height: 1px;
  background: #C7D5E2;
}

/* --- Spacing Enforcement --- */
.card, .features-grid > div, .product-card, .testimonial-card, .article-preview {
  margin-bottom: 20px;
}
.section + .section {
  margin-top: 34px;
}
@media (max-width: 600px) {
  .testimonial-card, .features-grid > div {
    min-width: 120px;
  }
}
