/* ============================
   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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #161B25;
  color: #F6F6F6;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #161B25;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #4FC1E9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  outline: none;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* ===================
   BRAND VARIABLES
   =================== */
:root {
  --primary: #252E3E;
  --secondary: #4FC1E9;
  --accent: #F6F6F6;
  --background: #161B25;
  --brand-shadow: 0 4px 24px 0 rgba(79,193,233,0.15);
  --bradius: 16px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===================
   TYPOGRAPHY
   =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem; /* 18px */
}
p, li, span, a {
  font-family: var(--font-body);
}
p {
  margin-bottom: 16px;
  color: #e2e6ed;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}

/* =====================
   STRUCTURE & LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flex Layouts Mandatory Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--primary);
  border-radius: var(--bradius);
  box-shadow: var(--brand-shadow);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #252E3E;
  border-radius: var(--bradius);
  box-shadow: 0 2px 12px 0 rgba(79,193,233,0.10);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Flexbox Grid - Various Custom Grids */
.service-cards, .service-grid, .testimonial-slider, .testimonial-list, .testimonial-carousel, .article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-articles .featured-posts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tips-grid, .content-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.article-grid, .service-grid {
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.featured-posts ul {
  margin-top: 10px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #191F2D;
  box-shadow: 0 4px 16px 0 rgba(37,46,62,0.10);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 101;
}
header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: #cbeefa;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #4FC1E9 0%, #30e3ca 100%);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(.68,.01,.23,1.17);
  position: absolute;
  left: 0; bottom: -4px;
}
.main-nav a:hover:after { width: 80%; }
.main-nav a.active {
  color: #4FC1E9;
}

/* Call-to-action btn right in navigation */
.cta-btn {
  padding: 12px 36px;
  background: linear-gradient(90deg, #30e3ca 0% , #4FC1E9 100%);
  color: #161B25;
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 16px 0 rgba(79,193,233,0.15);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  margin-left: 8px;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #4FC1E9 0%, #30e3ca 100%);
  color: #12141a;
  box-shadow: 0 6px 18px 0 rgba(45,205,246,0.16);
}
.cta-btn-secondary {
  padding: 10px 28px;
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 18px;
  margin-bottom: 8px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.cta-btn-secondary:hover,
.cta-btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* -------------------
   MOBILE NAVIGATION
------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #4FC1E9;
  cursor: pointer;
  margin-left: 18px;
  transition: color var(--transition);
  z-index: 201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #30e3ca;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #161B25ee;
  z-index: 200;
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  padding: 32px 24px 24px 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #4FC1E9; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  color: #F6F6F6;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  transition: background var(--transition),color var(--transition);
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #21293b;
  color: #4FC1E9;
}

/* =====================
   HERO BANNER
   ===================== */
.hero {
  background: linear-gradient(90deg, #1c2432 0%, #232c3f 50%, #262f49 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.hero p {
  font-size: 1.22rem;
  color: #CFEFFF;
  margin-bottom: 24px;
}

/* =====================
   FEATURES, SERVICES, CARDS
   ===================== */
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 20px;
}
.features ul li, .features ol li {
  display: flex;
  align-items: center;
  background: #212939;
  color: #cef7ff;
  border-radius: 12px;
  padding: 18px 22px 18px 16px;
  font-size: 1rem;
  gap: 16px;
  box-shadow: 0 2px 12px 0 rgba(79,193,233,0.07);
  margin-bottom: 12px;
  min-width: 240px;
}
.features ul li img, .features ol li img {
  height: 32px;
  width: 32px;
}

.service-card {
  background: #202841;
  color: #FAFBFC;
  border-radius: var(--bradius);
  box-shadow: 0 2px 16px 0 rgba(79,193,233,0.13);
  padding: 28px 24px 22px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition); 
  position: relative;
  z-index: 1;
  gap: 8px;
}
.service-card:hover,
.service-card:focus {
  transform: translateY(-6px) scale(1.022);
  box-shadow: 0 6px 32px 0 rgba(79,193,233,0.18);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #30e3ca;
}
.service-card span {
  margin-top: 14px;
  color: #4FC1E9;
  font-size: 1rem;
  font-weight: 600;
}

.article-card {
  background: #232b3e;
  color: #F6F6F6;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(79,193,233,0.08);
  padding: 24px 20px 18px 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card h3 {
  color: #4FC1E9;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.article-card .read-more {
  margin-top: 8px;
  color: #30e3ca;
  font-weight: 600;
  font-size: 0.95rem;
}
.article-card:hover,
.article-card:focus {
  box-shadow: 0 8px 24px 0 rgba(79,193,233,0.13);
  transform: translateY(-5px) scale(1.01);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  background: #F6F6F6;
  color: #252E3E;
  padding: 60px 0;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #1c2432;
}
.testimonial-slider, .testimonial-list, .testimonial-carousel {
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  color: #252E3E;
  border: 2px solid #30e3ca20;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(60,220,235,0.13);
  min-width: 220px;
  max-width: 360px;
  font-size: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card p {
  color: #242e3d;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #11bed1;
  font-family: var(--font-display);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 28px 0 rgba(49,180,233,0.12);
  border-color: #4FC1E9;
}

/* CTA Section */
.cta {
  background: linear-gradient(90deg, #232c3f 0%, #4FC1E9 100%);
  padding: 44px 0 40px 0;
  border-radius: 0 0 28px 28px;
  margin-bottom: 48px;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta p {
  color: #e7f7fa;
  font-size: 1.07rem;
  margin-bottom: 12px;
}

/* Legal Section Styles */
.legal {
  background: #191F2D;
  color: #E6F6FC;
  border-radius: var(--bradius);
  margin-bottom: 60px;
}
.legal h1, .legal h2, .legal h3 {
  color: #4FC1E9;
}
.legal ul li {
  padding-left: 7px;
  padding-bottom: 7px;
}
.legal ul {
  margin-bottom: 20px;
}

/* =====================
   CONTACT PAGE SECTION
   ===================== */
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.contact ul li {
  display: flex;
  align-items: center;
  color: #E6F6FC;
  background: #232c3f;
  border-radius: 10px;
  padding: 14px 12px;
  gap: 16px;
  font-size: 1.05rem;
}
.contact ul li img {
  width: 26px;
  height: 26px;
}
.map {
  background: #0f1118;
  border-radius: var(--bradius);
  color: #4FC1E9;
  padding: 18px 14px;
  margin: 12px 0;
  font-size: 1.12rem;
  border: 1px solid #222a3c;
}

/* Thank You Page */
.thank-you {
  background: #212939;
  border-radius: var(--bradius);
  padding: 50px 20px;
  min-height: 340px;
  text-align: center;
}
.thank-you h1 {
  margin-bottom: 18px;
}
.thank-you p {
  color: #ccefee;
  margin-bottom: 20px;
  font-size: 1.15rem;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #1B212F;
  color: #F6F6F6;
  padding: 0 0 30px 0;
}
.footer-main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 50px 0 14px 0;
  border-bottom: 1px solid #293145;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 140px;
}
.footer-brand img {
  height: 39px;
}
.footer-main-nav, .footer-sub-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 140px;
}
.footer-main-nav a,
.footer-sub-nav a {
  color: #81e7fd;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-main-nav a:hover, .footer-sub-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 160px;
}
.footer-contact h3 {
  margin-bottom: 8px;
  color: #4FC1E9;
  font-size: 1.1rem;
}
.footer-contact p {
  color: #cbf2fa;
}
.footer-contact p img {
  width: 21px;
  margin-right: 7px;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 14px;
}
.footer-newsletter h3 {
  color: #4FC1E9;
}

/* Remove unwanted margin for minimalist appearance */
footer .container {
  padding-bottom: 0;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 4000;
  background: #191F2D;
  color: #E6F6FC;
  box-shadow: 0 -2px 24px 0 rgba(79,193,233,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 18px 18px;
  gap: 32px;
  font-size: 1rem;
  animation: fadeInUp 0.7s cubic-bezier(.23,1.07,.7,1.1) 0s 1;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent__text {
  flex: 2 1 360px;
  color: #bceffa;
  font-size: 1.08rem;
}
.cookie-consent__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-consent__btn, .cookie-consent__settings {
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition),color var(--transition);
}
.cookie-consent__btn.accept {
  background: linear-gradient(90deg,#30e3ca,#4FC1E9);
  color: #191F2D;
  margin-right: 8px;
}
.cookie-consent__btn.accept:hover { color: #11181f; background: #4FC1E9; }
.cookie-consent__btn.reject {
  background: transparent;
  border: 2px solid #4FC1E9;
  color: #4FC1E9;
}
.cookie-consent__btn.reject:hover { background: #293145; color: #fff; }
.cookie-consent__settings {
  background: #1B212F;
  color: #30e3ca;
  border: 1.5px solid #30e3ca;
}
.cookie-consent__settings:hover {
  background: #262d3f;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(22,27,37,0.88);
  backdrop-filter: blur(2.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #191F2D;
  color: #E6F6FC;
  border-radius: 18px;
  padding: 36px 28px 24px 28px;
  min-width: 300px; max-width: 98vw;
  width: 420px;
  box-shadow: 0 12px 32px rgba(67,205,233,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  transform: translateY(40px);
  animation: fadeInModal 0.32s cubic-bezier(.39,.58,.57,1.08) forwards;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-header h2 {
  font-size: 1.35rem;
  color: #4FC1E9;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #bceffa;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #4FC1E9; }
.cookie-modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
}
.cookie-category.disabled {
  color: #567c95;
  opacity: 0.61;
}
.cookie-toggle {
  width: 36px; height: 22px;
  background: #30394e;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 2px solid #29405a;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #c7f8fe;
  transition: left 0.19s;
}
.cookie-toggle input:checked + span {
  left: 17px;
  background: #49e1f0;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
}

/* =====================
   ANIMATIONS & EFFECTS
   ===================== */
@media (hover: hover) {
  .cta-btn, .cta-btn-secondary, .cookie-consent__btn, .cookie-consent__settings, .service-card, .footer-main-nav a, .footer-sub-nav a, .article-card, .mobile-nav a {
    transition: background 0.23s, color 0.18s, box-shadow 0.18s, border 0.18s;
  }
  .service-card:hover, .article-card:hover, .footer-main-nav a:hover, .footer-sub-nav a:hover {
    box-shadow: 0 6px 22px 0 rgba(60,220,235,0.19);
    background: #1F293A;
  }
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 1024px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .main-nav {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .feature-articles .content-wrapper, .services .content-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-main {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
}
@media (max-width: 800px) {
  .service-cards, .service-grid, .testimonial-slider, .testimonial-list, .testimonial-carousel, .article-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .footer-main,
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: auto;
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features ul, .features ol {
    gap: 12px;
    flex-direction: column;
    min-width: 0;
  }
  .service-cards, .service-grid, .testimonial-slider, .testimonial-list, .testimonial-carousel, .article-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .tips-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .hero, .section, section {
    padding: 32px 8px;
    margin-bottom: 32px;
  }
  .cta {
    padding: 32px 0;
    border-radius: 0 0 18px 18px;
  }
  .footer-brand img {
    height: 34px;
  }
  .cookie-consent {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 18px 8px 12px 8px;
    font-size: 0.96rem;
  }
  .cookie-consent__actions {
    gap: 14px;
    width: 100%;
  }
  .cookie-modal {
    min-width: 0;
    width: 96vw;
    max-width: 96vw;
    padding: 24px 6vw 20px 6vw;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 8px; padding-right: 8px;
  }
  .hero {
    padding: 24px 0 20px 0;
    min-height: 180px;
  }
  .footer-main, .footer-contact {
    padding: 12px 0;
  }
  .cta-btn, .cta-btn-secondary, .cookie-consent__btn, .cookie-consent__settings {
    padding: 9px 15px;
    font-size: 0.95rem;
  }
}

/* =====================
   MISCELLANEOUS BASE
   ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #232c3f;
}
::-webkit-scrollbar-thumb {
  background: #37405c;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4FC1E9;
}

::-moz-selection {
  background: #30e3ca;
  color: #252E3E;
}
::selection {
  background: #30e3ca;
  color: #252E3E;
}

/* =====================
   DEBUG & UTILITIES
   ===================== */
.gap-20 { gap: 20px; }
.centered { justify-content: center; align-items: center; }

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