/* ===== CSS RESET & BASE ===== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #FFF9F4;
  color: #25314a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: #2B4B7D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #79A86B;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 0.25rem;
}
button {
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  border: none;
  transition: background 0.2s, color 0.2s;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2B4B7D;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.17;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
h4 { font-size: 1.07rem; }
p, .section p, .text-section p {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #28334f;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ===== GEOMETRIC STRUCTURED THEME ===== */
:root {
  --primary: #2B4B7D;
  --secondary: #79A86B;
  --accent: #FFF9F4;
  --neutral: #ffffff;
  --neutral-dark: #28334f;
  --shadow: 0 2px 12px rgba(43, 75, 125, 0.10);
  --shadow-hover: 0 4px 16px rgba(43, 75, 125, 0.12);
  --radius: 18px;
  --radius-small: 10px;
  --transition: 0.28s cubic-bezier(.44,1.1,.61,.99);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== FLEXBOX MANDATORY SPACING PATTERNS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.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;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--neutral);
  box-shadow: 0 2px 18px rgba(43,75,125,0.05);
  border-bottom: 2.5px solid var(--primary);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: relative;
  padding: 10px 6px;
  border-radius: 7px;
  transition: background 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--neutral);
}
.cta-btn {
  background: var(--primary);
  color: var(--neutral);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 14px 36px;
  margin-left: 20px;
  border: none;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--neutral);
  transform: translateY(-2px) scale(1.025);
}
.cta-link {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--secondary);
  transition: color var(--transition), border-color var(--transition);
}
.cta-link:hover, .cta-link:focus {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
/* MOBILE NAV BAR */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--neutral);
  font-size: 1.7rem;
  border-radius: 100px;
  border: 2px solid var(--secondary);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--neutral);
  border-color: var(--primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(43, 75, 125, 0.98);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.42,2,.59,.9);
  flex-direction: column;
  justify-content: flex-start;
  padding: 36px 22px 20px 22px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--neutral);
  background: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 99px;
  align-self: flex-end;
  font-size: 2.1rem;
  margin-bottom: 18px;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: var(--neutral);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  border-radius: 6px;
  padding: 14px 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 13px;
    margin-left: 11px;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 13px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(130deg, var(--accent) 80%, #eaf5eb 100%);
  padding-top: 60px;
  padding-bottom: 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
}
.hero p {
  max-width: 470px;
  margin: 0 auto 28px auto;
  font-size: 1.12rem;
  color: var(--primary);
}
.hero .cta-btn {
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features, .services {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature, .service {
  flex: 1 1 260px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 225px;
  max-width: 348px;
  border: 2.5px solid var(--primary);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature:hover, .service:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.011);
  z-index: 2;
}
.feature img, .service img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}
.feature h3, .service h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.feature-price, .service-price {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.08em;
}

/* ===== TEAM SECTION ===== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.team-member {
  flex: 1 1 190px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
  transition: box-shadow var(--transition), border var(--transition);
}
.team-member img {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--secondary);
}
.team-member h3 {
  margin-bottom: 8px;
  font-size: 1.10rem;
}
.team-member p {
  font-size: 0.96rem;
  color: #405070;
  text-align: center;
}

/* ===== CARDS, FAQS, GUIDES ===== */
.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.guide-card {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 190px;
  max-width: 350px;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.guide-card:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-hover);
  z-index: 1;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--accent);
  border-radius: var(--radius-small);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
  border-left-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

/***** TESTIMONIALS *****/
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 25px;
}
.testimonial-card {
  flex: 1 1 260px;
  background: #f7fafd;
  border-radius: var(--radius);
  border: 2.5px solid var(--secondary);
  box-shadow: var(--shadow);
  padding: 26px 24px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  color: #222a38;
  min-width: 220px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-card p {
  color: #273654;
  font-size: 1.07rem;
  margin-bottom: 16px;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.client-name {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

/***** STEPS LIST & PROCESS *****/
.step-list, .step-by-step-process, .benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  flex-direction: row;
}
.step-list li, .step-by-step-process li, .benefits-list li {
  flex: 1 1 155px;
  background: var(--accent);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  padding: 32px 16px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B4B7D;
  font-size: 1.03rem;
  border-left: 7px solid var(--primary);
  min-width: 170px;
}
.step-list img, .step-by-step-process img, .benefits-list img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}

/***** CREDENTIALS PARTNER ICONS *****/
.partners-logos {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}
.partners-logos img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-small);
  background: var(--accent);
  padding: 7px;
  border: 1.5px dashed var(--primary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(100deg, #f1f8ef 60%, #e5ebf7 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 48px 0 48px 0;
}
.cta-banner .container, .cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner h2 {
  text-align: center;
  font-size: 1.28rem;
  margin-bottom: 19px;
  color: var(--primary);
}

/* ===== ABOUT PREVIEW & STATIC SECTIONS ===== */
.about-preview, .about, .credentials, .legal, .thank-you, .contact {
  border-radius: var(--radius);
  background: var(--neutral);
  box-shadow: var(--shadow);
}
.about-preview .container, .about .container, .credentials .container,
.legal .container, .thank-you .container, .contact .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.text-section {
  margin-bottom: 22px;
}

/* ===== GUIDE CATEGORIES & SEARCH ===== */
.guide-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 17px;
}
.guide-categories span {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  background: #ecf6ee;
  padding: 6px 13px;
  border-radius: 99px;
  font-size: 0.95rem;
}

.search-bar {
  border-radius: var(--radius-small);
  border: 2px solid var(--primary);
  padding: 13px 14px 12px 45px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: url('../assets/icons/search.svg') no-repeat 15px 50%;
  background-size: 21px 21px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 460px;
  transition: border-color 0.2s;
}
.search-bar:focus {
  border-color: var(--secondary);
}

/* ===== FORMS ===== */
input[type=text], input[type=email], input[type=password], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 7px;
  border: 2px solid var(--primary);
  padding: 13px 14px;
  background: #f7fafc;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.19s;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

/* ===== MAP EMBED STYLES ===== */
.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 13px;
  background: #eaf1f2;
  border-radius: var(--radius-small);
  padding: 18px 13px;
  font-size: 1rem;
  color: var(--primary);
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: #1b273a;
  color: #fff;
  border-top: 4px solid var(--primary);
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 28px;
}
footer a {
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact p {
  color: #d7dbe6;
  font-size: 0.99rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
footer img, .logo img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 16px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1100px) {
  .container {
    padding: 0 8px;
  }
  footer .container {
    gap: 20px;
    flex-wrap: wrap;
  }
  .card-container, .content-grid, .guide-cards, .team-list, .feature-grid, .services-grid {
    gap: 17px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .services-grid, .step-list, .benefits-list, .team-list, .guide-cards, .testimonial-slider, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper, .cta-banner .container {
    gap: 13px;
  }
  .section {
    padding: 25px 8px;
    margin-bottom: 30px;
  }
  .about-preview .container, .about .container, .credentials .container,
  .legal .container, .thank-you .container, .contact .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service, .team-member, .guide-card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding-left: 15px; padding-right: 15px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.10rem; }
  .hero h1 { font-size: 1.2rem; }
  .footer-contact p, .feature-price, .service-price, .client-name {
    font-size: 0.95rem;
  }
  .map-embed { font-size: 0.95rem; }
}

/* ===== ANIMATION & EFFECTS ===== */
.card, .feature, .service, .team-member, .testimonial-card, .guide-card, .faq-item {
  transition: box-shadow 0.18s, border-color 0.22s, transform 0.15s;
}
.cta-btn, .main-nav a, .mobile-nav a, .cta-link {
  transition: background 0.14s, color 0.14s, transform 0.15s;
}
/* BUTTON FOCUS STYLES */
.cta-btn:focus, .cta-link:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(43, 75, 125, 0.08);
  border-top: 2.5px solid var(--primary);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px 24px 20px;
  min-width: 0;
  animation: slideup-banner 0.5s;
}
@keyframes slideup-banner {
  0% { transform: translateY(100px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  font-size: 0.99rem;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.cookie-btn {
  background: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, transform 0.11s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--neutral);
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.secondary {
  background: var(--neutral);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-btn.secondary:hover {
  background: var(--secondary);
  color: var(--neutral);
  border-color: var(--secondary);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43, 75, 125, 0.82);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalfadein 0.28s ease;
}
@keyframes modalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 32px 28px 20px 28px;
  min-width: 320px;
  max-width: 94vw;
  color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalopen 0.23s cubic-bezier(.19,2.2,.22,.91);
}
@keyframes modalopen {
  0% { transform: scale(.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #e3e8f2;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-switch {
  margin-left: auto;
}
/* Simple Toggle Switch */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.switch input { display: none; }
.slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #d0dee6;
  border-radius: 100px;
  transition: background 0.18s;
}
.switch input:checked + .slider {
  background: var(--secondary);
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(43,75,125,0.09);
  transition: transform 0.19s;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 99px;
  padding: 5px 11px 6px 11px;
  font-size: 1.3rem;
  border: none;
  z-index: 12;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.95rem;
    padding: 16px 9px 17px 12px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 20px 10px 18px 10px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-20 { gap: 20px; }


/* ===== END OF STYLES ===== */
