/* ==========================================================================  
 Steel Tonic Académie – Minimalist Style CSS (Flexbox Only) 
========================================================================== */
/*--------------------
1. RESET & BASE STYLES
--------------------*/
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, 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, 
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: #fff;
  color: #153B56;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  margin-left: 28px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #153B56;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #4086A0;
  outline-offset: 2px;
}
a:hover {
  color: #4086A0;
}

strong {
  font-weight: 600;
}

hr {
  border: 0;
  height: 1px;
  background: #F3F5F8;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------
2. TYPOGRAPHY
------------------------- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #153B56;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #153B56;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #153B56;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #153B56;
}
p, li, ul, ol, td, th {
  font-size: 1rem;
  color: #1f2c37;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.subtitle {
  font-size: 1.2rem;
  color: #4086A0;
  margin-bottom: 26px;
  font-weight: 500;
}

/* Typography scale */
.text-lg { font-size: 1.25rem; }
.text-md { font-size: 1.125rem; }
.text-sm { font-size: 0.95rem; }
.text-xs { font-size: 0.85rem; }

/* -------------------------------------
3. HEADER & NAVIGATION
------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #F3F5F8;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
}
nav > a img {
  height: 38px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  margin-left: 40px;
}
nav ul li {
  margin: 0;
}
nav ul li a {
  padding: 8px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #153B56;
  transition: color 0.18s;
  border-radius: 3px;
}
nav ul li .cta-primary {
  margin-left: 10px;
}
nav ul li a:hover {
  color: #4086A0;
}

.cta-primary {
  display: inline-block;
  background: #153B56;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(21,59,86,0.04);
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #4086A0;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(64, 134, 160, 0.12);
  outline: none;
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #153B56;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #153B56;
  border-radius: 6px;
  padding: 12px 28px;
  margin-left: 16px;
  transition: background 0.17s, color 0.17s, border 0.15s, box-shadow 0.18s;
  box-shadow: 0 1px 4px 0 rgba(21,59,86,0.03);
  cursor: pointer;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #F3F5F8;
  color: #153B56;
  border-color: #4086A0;
  box-shadow: 0 2px 10px rgba(64,134,160,0.07);
  outline: none;
}

/* Hamburger Button Mobile */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #F3F5F8;
  color: #153B56;
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 6px;
  margin-left: 15px;
  cursor: pointer;
  z-index: 201;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eaeef0;
  color: #4086A0;
}

/* --------------------------
4. MOBILE MENU (SIDEDRAWER)
-------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 24px rgba(21,59,86,0.14);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.45, .09, .23, 1);
  z-index: 201;
  padding: 0 0 40px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 600px rgba(21,59,86,0.09);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #153B56;
  font-size: 2.2rem;
  padding: 22px 24px 14px 0;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 220;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #4086A0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  gap: 6px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #153B56;
  padding: 15px 26px;
  border-radius: 0 22px 22px 0;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F5F8;
  color: #4086A0;
}
.mobile-nav .cta-primary {
  margin-top: 18px;
  width: 88vw;
  max-width: 380px;
  text-align: center;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 991px) {
  nav ul {
    gap: 18px;
    margin-left: 18px;
  }
  header .container {
    min-height: 56px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 12px;
    margin-left: 9px;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    min-height: 54px;
  }
}

/* -------------------------------------
5. SECTIONS & SPECIAL LAYOUTS
------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 0;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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: 22px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #F3F5F8;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(21,59,86,0.03);
  padding: 26px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s;
}
.feature img {
  width: 40px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 4px 16px 0 rgba(64, 134, 160, 0.11);
}

@media (max-width: 992px) {
  .feature-grid {
    gap: 16px;
  }
  .feature {
    min-width: 190px;
    padding: 22px 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
}

/* Cards & Card containers (Generic) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(21,59,86,0.05);
  border: 1px solid #F3F5F8;
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(64,134,160,0.12);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* CTA BANNER */
.cta-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  background: #F3F5F8;
  border-radius: 12px;
  padding: 32px 28px;
  margin: 24px 0 0 0;
  box-shadow: 0 2px 16px 0 rgba(21,59,86,0.05);
}
.cta-banner p {
  font-size: 1.18rem;
  color: #153B56;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 12px;
  }
}

/* -------------------------------------
6. HERO SECTIONS
------------------------------------- */
.hero {
  background: #F3F5F8;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 48px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  min-height: 240px;
}
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  .hero,
  .hero .container {
    min-height: 100px;
    padding: 22px 0 3px 0;
    flex-direction: column;
  }
}

/* -------------------------------------
7. PRICES, TABLES, ACCORDIONS, CONTACT
------------------------------------- */
.price-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  background: #fff;
  border: 1px solid #F3F5F8;
  border-radius: 12px;
  padding: 26px 32px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px 0 rgba(21,59,86,0.04);
  transition: box-shadow 0.14s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.price-card p strong {
  color: #4086A0;
  font-size: 1.38rem;
}
.price-card ul {
  list-style: disc;
  margin: 0 0 0 22px;
}
.price-card:hover {
  box-shadow: 0 10px 30px 0 rgba(64,134,160,0.14);
}
@media (max-width: 900px) {
  .price-tables {
    gap: 12px;
  }
  .price-card {
    min-width: 150px;
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  .price-tables {
    flex-direction: column;
    gap: 15px;
  }
  .price-card {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }
}

.comparison-grid {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(21,59,86,0.03);
}
.comparison-grid th, .comparison-grid td {
  font-size: 1rem;
  padding: 14px 18px;
  border-bottom: 1px solid #F3F5F8;
  text-align: left;
}
.comparison-grid th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #153B56;
  background: #F3F5F8;
  font-size: 1.05rem;
}
.comparison-grid tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .comparison-grid th, .comparison-grid td{
    font-size: 0.93rem;
    padding: 10px 8px;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0 30px 0;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #F3F5F8;
  box-shadow: 0 2px 8px rgba(21,59,86,0.03);
  padding: 22px 18px;
  transition: box-shadow 0.15s; 
}
.faq-item:hover {
  box-shadow: 0 6px 28px 0 rgba(64,134,160,0.09);
}
.faq-item h3 {
  font-size: 1.12rem;
  font-weight: 600;
}
.faq-item p {
  margin: 7px 0 0 0;
  color: #1f2c37;
  font-size: 1rem;
}

.contact-block ul {
  margin-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-block ul li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact-block img {
  width: 22px;
  height: auto;
}
.confirmation-details {
  margin-bottom: 32px;
}
.confirmation-details ul {
  margin-top: 7px;
}

/* -------------------------------------
8. TESTIMONIALS
------------------------------------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #F3F5F8;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(21,59,86,0.08);
  padding: 28px 22px 18px 22px;
  flex: 1 1 270px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(64,134,160,0.13);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.testimonial-content p {
  font-size: 1.05rem;
  color: #153B56;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-content .testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #4086A0;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
.testimonial-content .star-rating {
  font-size: 1.22rem;
  color: #FDB935;
  letter-spacing: 2px;
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .testimonial-card {
    min-width: 180px;
    padding: 13px 10px 11px 10px;
  }
}
@media (max-width: 580px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    padding: 12px 7px 10px 12px;
  }
}

/* Ensure proper contrast */
.testimonial-card, .testimonial-content {
  background: #fff;
  color: #153B56;
}

/* -------------------------------------
9. FOOTER
------------------------------------- */
footer {
  background: #f3f9fd;
  border-top: 1px solid #F3F5F8;
  padding: 34px 0 19px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer nav {
  order: 1;
  width: 100%;
}
footer nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
footer nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #4086A0;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 4px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.15s, color 0.13s;
}
footer nav ul li a:hover {
  color: #153B56;
  opacity: 1;
}
.footer-contact {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1rem;
  color: #1f2c37;
  margin-bottom: 10px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.footer-contact img {
  width: 18px;
  height: auto;
  opacity: 0.98;
}
.copyright {
  order: 3;
  font-size: 0.95rem;
  color: #b7bac7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  footer nav ul {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }
  footer .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* -------------------------------------
10. COOKIE CONSENT BANNER
------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F3F5F8;
  color: #153B56;
  box-shadow: 0 -4px 30px 0 rgba(21,59,86,0.06);
  padding: 18px 28px 18px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.45s cubic-bezier(.33,1.09,.29,.99), opacity 0.45s cubic-bezier(.33,1.09,.29,.99);
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 300px;
  color: #153B56;
  font-size: 1rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-consent-banner button {
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 9px 22px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-consent-banner .cookie-accept {
  background: #153B56;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover {
  background: #4086A0;
}
.cookie-consent-banner .cookie-reject {
  background: #fff;
  color: #153B56;
  border: 1px solid #F3F5F8;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #F3F5F8;
  color: #4086A0;
}
.cookie-consent-banner .cookie-settings {
  background: #F3F5F8;
  color: #4086A0;
  border: 1px solid #4086A0;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #e6eef4;
  color: #153B56;
  border: 1px solid #153B56;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 13px 8px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,59,86,0.12);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.3s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #153B56;
  border-radius: 14px;
  box-shadow: 0 8px 46px rgba(21,59,86,0.18);
  max-width: 430px;
  width: 94vw;
  padding: 36px 30px 24px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
  z-index: 10001;
}
.cookie-modal h2 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #F3F5F8;
  outline: none;
  border: 1px solid #4086A0;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-category-toggle:checked {
  background: #4086A0;
}
.cookie-category-toggle:after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.5px;
  left: 2px;
  transition: left 0.19s;
}
.cookie-category-toggle:checked:after {
  left: 17px;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.65;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-modal .modal-actions button {
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-modal .modal-accept {
  background: #153B56;
  color: #fff;
}
.cookie-modal .modal-accept:hover {
  background: #4086A0;
}
.cookie-modal .modal-cancel {
  background: #fff;
  color: #153B56;
  border: 1px solid #F3F5F8;
}
.cookie-modal .modal-cancel:hover {
  background: #F3F5F8;
  color: #4086A0;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #4086A0;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 10002;
}
.cookie-modal-close:hover {
  color: #153B56;
}

@media (max-width:430px) {
  .cookie-modal {
    padding: 25px 10px 19px 14px;
  }
  .cookie-modal-close {
    right: 4px;
    top: 2px;
  }
}

/* -------------------------------------
11. MICRO-INTERACTIONS & TRANSITIONS
------------------------------------- */
button, .cta-primary, .cta-secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.21s, border 0.15s;
}
section, .card, .testimonial-card, .faq-item, .feature, .price-card {
  transition: box-shadow 0.19s, border-color 0.13s;
}

/* -------------------------------------
12. MEDIA QUERIES/RESPONSIVENESS
------------------------------------- */
@media (max-width: 1100px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .cta-banner {
    padding: 18px 6px;
  }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .section { padding: 24px 7px; margin-bottom: 38px; }
  .testimonial-card { padding: 16px 5px 11px 10px; }
}
@media (max-width: 560px) {
  h1, .hero h1 { font-size: 1.18rem; }
  h2 { font-size: 1.01rem; }
  .footer-contact { gap: 4px; font-size: 0.89rem; }
}

/* -------------------------------------
13. UTILITY CLASSES
------------------------------------- */
.bg-accent {
  background: #F3F5F8;
}
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 9px !important; }
.mb-2 { margin-bottom: 18px !important; }
.mb-3 { margin-bottom: 28px !important; }
.mt-2 { margin-top: 14px !important; }
.mt-3 { margin-top: 22px !important; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded { border-radius: 10px; }
.shadow {
  box-shadow: 0 1px 8px rgba(21,59,86,0.08);
}
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* -------------------------------------
14. FORM (if any forms used in future)
------------------------------------- */
input, select, textarea {
  border: 1px solid #F3F5F8;
  border-radius: 6px;
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 12px 14px;
  font-size: 1rem;
  width: 100%;
  color: #153B56;
  margin-bottom: 17px;
  outline: none;
  transition: border 0.13s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #4086A0;
  box-shadow: 0 2px 12px 0 rgba(64,134,160,0.10);
}
::placeholder {
  color: #b7bac7;
  opacity: 1;
}
button[disabled], input[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
}

/* Ensuring no overlapping */
section, .card, .feature, .testimonial-card, .faq-item, .price-card {
  margin-bottom: 20px;
}

/* Feature-item SPECIFIC (for eventual flexibility) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure all layouts use only flexbox! */
/* (No Grid, no columns) */
