/* ===== CSS RESET & NORMALIZATION ===== */
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: #F5F7FA;
  color: #183153;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ===== BRAND VARIABLES ===== */
:root {
  --color-primary: #183153;
  --color-secondary: #F5F7FA;
  --color-accent: #FFB81C;
  --color-body: #183153;
  --color-white: #fff;
  --color-grey: #e5e8ed;
  --shadow-card: 0 2px 22px 0 rgba(24, 49, 83, 0.06);
  --radius: 12px;
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: local('Oswald'), local('Oswald-Regular'),
    url('https://fonts.gstatic.com/s/oswald/v36/TK3iWkUHHAIjg75cFRf3bXL8LICs1g.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
    url('https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxP.ttf') format('truetype');
}

body {
  font-family: var(--font-body);
  background: var(--color-secondary);
  color: var(--color-body);
  min-height: 100vh;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.1rem; }

p, ul, ol, li, span, blockquote {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-body);
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  margin-bottom: 12px;
}

/* ===== LAYOUT SECTIONS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 320px;
  min-width: 240px;
  transition: box-shadow 0.21s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 4px 32px rgba(24,49,83,0.13);
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 430px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.1s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(24,49,83,.13);
  transform: translateY(-2px) scale(1.018);
}
.testimonial-author {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-primary);
  opacity: 0.87;
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey);
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  margin-right: 16px;
  display: flex;
  align-items: center;
  height: 46px;
}
.logo img {
  height: 34px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  opacity: 0.8;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  font-size: 1rem;
  transition: color 0.17s, opacity 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.cta-btn.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.cta-btn.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 6px 0 rgba(24,49,83,0.04);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 28px rgba(255,184,28,0.08);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(24,49,83,0.10);
}

/* Hide mobile nav elements on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* ===== MOBILE NAVIGATION (BURGER MENU) ===== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 38px;
    height: 38px;
    background: var(--color-white);
    border: 1px solid var(--color-grey);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-primary);
    z-index: 110;
    box-shadow: 0 2px 12px rgba(24,49,83,.04);
    cursor: pointer;
    transition: border-color 0.16s;
  }
  .mobile-menu-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-white);
    box-shadow: 0 12px 48px rgba(24,49,83,0.09);
    transform: translateX(-105%);
    transition: transform 0.29s cubic-bezier(.63,0,.37,1);
    z-index: 200;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    background: var(--color-grey);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 201;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-menu-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
  }
  .mobile-menu nav.mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    gap: 24px;
    align-items: center;
    font-size: 1.18rem;
    font-weight: 500;
  }
  .mobile-nav a {
    padding: 12px 24px;
    border-radius: var(--radius);
    color: var(--color-primary);
    background: none;
    transition: background 0.16s, color 0.15s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-accent);
    color: var(--color-primary);
  }
  .cta-btn.primary, .cta-btn.secondary {
    font-size: 1.1rem;
  }
}


@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .logo img {
    height: 26px;
  }
  .cta-btn.primary, .cta-btn.secondary {
    padding: 8px 18px;
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  opacity: 0.88;
}
@media (max-width: 768px) {
  .hero {
    min-height: 0;
    margin-bottom: 34px;
    padding: 18px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* ===== FEATURES SECTION ===== */
.features ul, .features-list, .service-list, .review-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
}
.features ul li, .review-highlights ul li {
  display: flex;
  align-items: center;
  background: var(--color-grey);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1rem;
  gap: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.36;
}
.features ul li img {
  width: 30px;
  height: 30px;
  margin-right: 6px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .features ul, .features-list, .service-list, .review-highlights ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    font-size: 0.98rem;
    padding: 11px 12px;
  }
}

/* ===== SERVICES (INDEX & SERVICES) ===== */
.services ul,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding-left: 0;
}
.services ul li, .service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.services ul li:hover, .service-card:hover {
  box-shadow: 0 4px 32px rgba(24,49,83,0.11);
  transform: translateY(-2px) scale(1.018);
}
.services ul li strong,
.service-card h3 {
  color: var(--color-primary);
  font-size: 1.14rem;
}
.services ul li p,
.service-card p {
  font-size: 0.98rem;
  color: #47546a;
  opacity: 0.92;
}
.services ul li span,
.service-card .price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .services ul, .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .services ul li, .service-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* ===== TESTIMONIALS/REVIEWS ===== */
.testimonials .content-wrapper,
.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.review-list {
  margin-top: 10px;
}
.testimonial-card blockquote {
  color: #222d3c;
  font-size: 1.06rem;
  line-height: 1.55;
  opacity: 0.94;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper, .review-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 22px rgba(24,49,83,0.07);
}
.cta .content-wrapper > h2,
.cta .content-wrapper > p {
  color: var(--color-white);
}
.cta .content-wrapper a.cta-btn {
  margin-top: 2px;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: background 0.18s, color 0.18s;
}
.cta .content-wrapper a.cta-btn:hover {
  background: var(--color-white);
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .cta {
    margin-bottom: 34px;
    padding: 22px 0;
  }
  .cta .content-wrapper > h2 {
    font-size: 1.3rem;
  }
}

/* ===== ABOUT, TEXT, AND CONSISTENT TEXT SECTIONS ===== */
.about .content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about .content-wrapper ul,
.text-section ul {
  padding-left: 22px;
}
.text-section ol {
  padding-left: 28px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.01rem;
  line-height: 1.6;
  color: var(--color-body);
}
@media (max-width: 768px) {
  .about .content-wrapper, .text-section {
    gap: 10px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
  margin-top: 8px;
  padding-left: 0;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.contact-details a {
  color: var(--color-primary);
  font-weight: 500;
  word-break: break-all;
  transition: color 0.15s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-accent);
}
.map-embed {
  margin-top: 14px;
  font-size: 0.97rem;
  color: #455a7F;
  opacity: 0.96;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-grey);
  padding: 10px 18px;
  border-radius: 6px;
}
.map-embed img {
  width: 26px;
  height: 26px;
}
@media (max-width: 768px) {
  .contact-details ul {
    gap: 7px;
  }
  .map-embed {
    padding: 8px 8px;
    font-size: 0.95rem;
  }
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-grey);
  margin-top: 34px;
  padding-top: 20px;
  padding-bottom: 16px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--color-primary);
  opacity: 0.83;
  border-radius: 8px;
  padding: 4px 8px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  opacity: 1;
}
.brand-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}
.brand-mini img {
  height: 36px;
}
.contact-summary p {
  font-size: 0.98rem;
  color: #455a7F;
  line-height: 1.48;
}
.copyright {
  font-size: 0.93rem;
  color: #8B96A3;
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .footer-nav nav {
    gap: 14px;
  }
}


/* ===== BUTTONS, LINKS, AND INTERACTIVE ELEMENTS ===== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  cursor: pointer;
}
button:focus, .cta-btn:focus, a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/* ===== MICRO-INTERACTIONS (HOVER/FOCUS) ===== */
a, button {
  transition: color 0.15s, background 0.14s, box-shadow 0.14s, border 0.14s;
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--color-grey);
  margin-bottom: 18px;
  transition: border 0.14s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
  outline: none;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-consent-banner, .cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-white);
  border-top: 1.5px solid var(--color-grey);
  box-shadow: 0 -2px 14px rgba(24,49,83,0.06);
  z-index: 400;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1.06rem;
  line-height: 1.5;
  animation: slideInCookie 0.7s cubic-bezier(.4,0,.2,1);
  transition: transform 0.24s cubic-bezier(.41,0,.37,1);
}
@keyframes slideInCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
  margin-left: 18px;
}
.cookie-consent-banner .cookie-btn {
  padding: 9px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 1px 7px rgba(24,49,83,0.07);
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-btn.accept:hover,
.cookie-consent-banner .cookie-btn.accept:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-consent-banner .cookie-btn.reject {
  background: var(--color-grey);
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-btn.settings {
  border: 1.5px solid var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: var(--color-grey);
}
@media (max-width: 650px) {
  #cookie-consent-banner, .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    font-size: 0.97rem;
    padding: 17px 8px 10px 8px;
    text-align: left;
  }
  .cookie-consent-banner .cookie-btns {
    flex-direction: row;
    gap: 12px;
    margin-left: 0;
  }
}

/* ===== COOKIE CONSENT MODAL ===== */
#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  z-index: 410;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83,0.25);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: .0; }
  to { opacity: 1; }
}
#cookie-modal.open, .cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 38px rgba(24,49,83,0.13);
  padding: 36px 28px 24px 28px;
  max-width: 420px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: dropInModal 0.29s cubic-bezier(.4,0,.44,1);
}
@keyframes dropInModal {
  from { transform: translateY(-48px); opacity: .0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2, .cookie-modal-content h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 9px 0;
}
.cookie-category-row .toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background: var(--color-grey);
  border-radius: 16px;
  padding: 3px;
  transition: background 0.13s;
}
.cookie-category-row .toggle input[type="checkbox"] {
  display: none;
}
.cookie-category-row .toggle .slider {
  width: 32px;
  height: 18px;
  background: var(--color-grey);
  border-radius: 16px;
  position: relative;
  transition: background 0.19s;
  margin-left: 5px;
  margin-right: 5px;
}
.cookie-category-row .toggle .slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(24,49,83,0.09);
  transition: transform 0.19s, background 0.13s;
}
.cookie-category-row .toggle input:checked + .slider {
  background: var(--color-accent);
}
.cookie-category-row .toggle input:checked + .slider:before {
  transform: translateX(14px);
  background: var(--color-primary);
}
.cookie-category-row label {
  font-size: 1.02rem;
  font-weight: 500;
}
.cookie-category-row .always-on {
  color: #4d617c;
  font-size: 0.97rem;
  font-style: italic;
  opacity: 0.76;
}
.cookie-modal-content .modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal-content .modal-btns .cookie-btn {
  min-width: 90px;
}
.cookie-modal-content .modal-close {
  position: absolute;
  right: 14px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.23rem;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-modal-content .modal-close:hover {
  color: var(--color-accent);
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 20px 6px 16px 6px;
    max-width: 98vw;
  }
}

/* ===== GENERAL RESPONSIVE ===== */
@media (max-width: 480px) {
  h1 {
    font-size: 1.19rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .cta-btn {
    padding: 8px 8px;
    font-size: 0.99rem;  
  }
}

/* ===== UTILITY CLASSES ===== */
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.w-100 {
  width: 100% !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap8 { gap: 8px; }
.gap12 { gap: 12px; }
.gap16 { gap: 16px; }
.gap20 { gap: 20px; }
.gap24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-30 { margin-bottom: 30px; }

/* ===== SCROLLBAR ===== */
html::-webkit-scrollbar {
  width: 10px;
  background: var(--color-secondary);
}
html::-webkit-scrollbar-thumb {
  background: var(--color-grey);
  border-radius: 5px;
}
