/* --------------------
   Lumina Dynamics CSS
   Author: Senior CSS Developer & UI Designer
   Brand: Modern, Minimalist, Trustworthy
-----------------------*/
/* ====== 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, 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 {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: #FAFAF7;
  color: #1C2326;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #559EA5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C2326;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #1C2326;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
  color: #313235;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #E3CFB9;
  padding-left: 16px;
  margin-bottom: 20px;
  color: #666;
  font-style: italic;
}
section {
  width: 100%;
}

/* ====== CONTAINER & LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: #FFF;
  box-shadow: 0 2px 12px rgba(28,35,38,0.03);
  z-index: 101;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
  gap: 0;
}
header img[alt="Lumina Dynamics"] {
  height: 38px;
  width: auto;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1C2326;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3F2EF;
  color: #559EA5;
}
.main-nav .cta-primary {
  background: #559EA5;
  color: #FFF;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 10px;
  padding: 10px 20px;
  box-shadow: 0px 2px 8px rgba(86,158,165,0.07);
  transition: background 0.2s, box-shadow 0.2s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #1C2326;
  box-shadow: 0px 4px 16px rgba(86,158,165,0.13);
  color: #FFF;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C2326;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #559EA5;
}

/* ====== MOBILE MENU ====== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,35,38,0.86);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(0.6,0.1,0.3,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  padding: 18px 18px 6px 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 202;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: #E3CFB9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin-top: 32px;
  padding-left: 30px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 3px;
  transition: background 0.16s, color 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(86,158,165,0.26);
  color: #E3CFB9;
}

/* ====== HERO SECTION ====== */
.hero {
  background: #FFF;
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
  box-shadow: 0 2px 18px rgba(220, 210, 200, 0.03);
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  max-width: 620px;
  color: #313235;
}

/* ====== GENERIC SECTION STYLES ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(28,35,38,0.048);
}
.features, .services, .testimonials, .cta-section, .case-studies, .newsletter-cta, .about-home, .about-section,
.services-detailed, .contact-section, .contact-info, .legal-section, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
  box-shadow: none;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ====== FEATURE / USP GRID ====== */
.feature-grid, .usp-list, .trend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.feature-grid li, .usp-list li, .trend-list li {
  background: #FFF;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  border-radius: 12px;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 2px 10px rgba(28,35,38,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid #F2EFE9;
}
.feature-grid img, .usp-list img, .trend-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 3px;
}
.features.inspiration .feature-grid li, .features.inspiration .trend-list li {
  background: #FAFAF7;
  border: 0;
  box-shadow: none;
}

/* ====== SERVICES OVERVIEW ====== */
.service-list, .benefit-list, .feature-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin-bottom: 24px;
}
.service-list li, .service-list-detailed li {
  border-radius: 11px;
  background: #FFF;
  box-shadow: 0 2px 15px rgba(28,35,38,0.045);
  padding: 22px 18px 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid #EFE8DE;
  gap: 10px;
}
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.service-list-detailed li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 11px;
  border: 1px solid #F2EFE9;
  padding: 24px 20px;
  min-width: 270px;
  max-width: 520px;
  box-shadow: 0 2px 13px rgba(28,35,38,0.035);
  margin-bottom: 20px;
}
.service-list-detailed img {
  width: 46px;
  height: 46px;
  margin-right: 8px;
}
.service-list-detailed h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.service-price {
  color: #559EA5;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 10px;
  display: inline-block;
}
.service-link {
  color: #559EA5;
  font-weight: 500;
  margin-top: 7px;
  text-decoration: underline;
  transition: color 0.16s;
}
.service-link:hover, .service-link:focus {
  color: #1C2326;
}
.cta-secondary {
  margin-top: 18px;
  color: #1C2326;
  border: 1px solid #E3CFB9;
  border-radius: 5px;
  background: #FAFAF7;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E3CFB9;
  color: #1C2326;
  border-color: #E3CFB9;
}
.feature-highlights li, .benefit-list li {
  background: #FFF;
  border-radius: 9px;
  padding: 12px 18px;
  margin-bottom: 10px;
  color: #1C2326;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.feature-highlights img, .benefit-list img {
  width: 32px;
  height: 32px;
}

/* ====== PROJECTS/CARDS ====== */
.case-studies .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-item {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(28,35,38,0.036);
  padding: 24px 18px 16px 18px;
  flex: 1 1 280px;
  min-width: 245px;
  margin-bottom: 20px;
  border: 1px solid #EEE6D6;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ====== TESTIMONIALS ====== */
.testimonials, .testimonial {
  background: #FAFAF7;
}
.testimonials .content-wrapper, .testimonial .content-wrapper {
  gap: 30px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.testimonial-card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(28,35,38,0.08);
  color: #1C2326;
  padding: 20px 28px 20px 28px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #F2EFE9;
}
.testimonial-card p {
  color: #272A2D;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-weight: 500;
  color: #559EA5;
  margin-top: 7px;
  letter-spacing: 0.02em;
}

/* ====== BLOG ====== */
.blog-list .blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-preview-grid article {
  background: #FFF;
  border: 1px solid #EEE6D6;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(28,35,38,0.033);
  flex: 1 1 220px;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.blog-tag {
  background: #E3CFB9;
  color: #1C2326;
  font-size: 0.92rem;
  border-radius: 4px;
  padding: 4px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 8px;
}
.tags-filter {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
}
.tags-filter .tag {
  background: #FAFAF7;
  color: #559EA5;
  font-size: 0.97rem;
  border-radius: 3px;
  padding: 5px 13px;
  transition: background 0.15s, color 0.15s;
}
.tags-filter .tag:hover, .tags-filter .tag:focus {
  background: #E3CFB9;
  color: #1C2326;
}

/* ====== NEWSLETTER CTA SECTION ====== */
.newsletter-cta .content-wrapper, .cta-section .content-wrapper {
  align-items: flex-start;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(28,35,38,0.052);
  padding: 30px 20px;
  gap: 15px;
  margin: 0 auto;
}

/* ====== CONTACT SECTIONS ====== */
.contact-summary, .contact-info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  list-style: none;
}
.contact-summary li, .contact-info ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #1C2326;
}
.contact-summary img, .contact-info ul img {
  width: 29px;
  height: 29px;
  margin-right: 4px;
}
.privacy-note {
  background: #FAFAF7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  font-size: 0.97rem;
  margin-top: 10px;
  color: #1C2326;
}
.privacy-note img {
  width: 18px;
  height: 18px;
}

/* ====== CTA BUTTON PRIMARY ====== */
.cta-primary {
  background: #559EA5;
  color: #FFF;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 13px 32px;
  cursor: pointer;
  display: inline-block;
  margin-top: 14px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(86,158,165,0.14);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.21s;
  text-decoration: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1C2326;
  color: #FAFAF7;
  box-shadow: 0 5px 22px rgba(28,35,38,0.10);
  transform: translateY(-2px) scale(1.025);
}

/* ====== CARD SPACING ====== */
.card-container, .project-list, .blog-preview-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* ====== TEAM BIOS (ABOUT) ====== */
.team-bio {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 13px rgba(28,35,38,0.035);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  border: 1px solid #EFE8DE;
}

/* ====== MOODBOARD/STYLETIPS (INSPIRATION) ====== */
.moodboard-descriptions, .style-tips {
  background: #FAFAF7;
  border-radius: 9px;
  padding: 15px 20px 13px 20px;
  margin: 16px 0 14px 0;
}
.style-tips ul {
  margin: 0;
  padding-left: 16px;
}

/* ====== PROCESS OVERVIEW ====== */
.process-overview {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 28px;
  list-style: decimal inside;
}
.process-overview li {
  font-size: 1rem;
  margin-bottom: 0;
}

/* ====== LEGAL PAGE SECTION ====== */
.legal-section {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(28,35,38,0.035);
  margin-bottom: 40px;
  padding: 38px 28px;
}
.legal-section h1 {
  margin-bottom: 18px;
}
.text-section {
  margin-top: 12px;
  color: #313235;
}
.text-section h2 {
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.text-section ul {
  margin-bottom: 15px;
}

/* ====== CONFIRMATION SECTION (THANK-YOU) ====== */
.confirmation-section .content-wrapper {
  align-items: center;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 80px;
  gap: 18px;
}
.confirmation-section h1 {
  font-size: 2rem;
  margin-bottom: 13px;
}
.confirmation-section p {
  font-size: 1.08rem;
  color: #313235;
}
.confirmation-section .cta-primary {
  margin-top: 19px;
}

/* ====== FOOTER ====== */
footer {
  background: #FFF;
  border-top: 1px solid #F3F2EF;
  padding: 38px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #559EA5;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1C2326;
}
footer p {
  color: #AAA;
  font-size: 0.93rem;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1C2326;
  color: #FFF;
  z-index: 2222;
  padding: 26px 24px 22px 24px;
  box-shadow: 0 -2px 18px rgba(28,35,38,0.10);
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  transition: transform 0.33s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner p {
  color: #FFF;
  margin-bottom: 4px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: #559EA5;
  color: #FFF;
  border: none;
  border-radius: 7px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-btn.reject {
  background: #E3CFB9;
  color: #1C2326;
}
.cookie-banner .cookie-btn.settings {
  background: #F3F2EF;
  color: #1C2326;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #1C2326;
  color: #FFF;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #559EA5;
  color: #FFF;
}

/* ====== COOKIE CONSENT MODAL ====== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2232;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,35,38,0.62);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal.backdrop-hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  color: #1C2326;
  border-radius: 15px;
  max-width: 430px;
  width: 85vw;
  padding: 34px 28px 25px 28px;
  box-shadow: 0 10px 24px rgba(28,35,38,0.19);
  z-index: 2233;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 7px;
}
.cookie-modal label {
  margin-right: 13px;
  font-weight: 500;
  font-size: 1.03rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #BBB;
}
.cookie-category input[type="checkbox"] {
  accent-color: #559EA5;
  width: 16px;
  height: 16px;
}
.cookie-modal .cookie-actions {
  margin-top: 15px;
  gap: 13px;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-btn {
  min-width: 108px;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #1C2326;
  font-size: 1.7rem;
  position: absolute;
  top: 19px;
  right: 21px;
  cursor: pointer;
  z-index: 2236;
}
.cookie-modal .close-modal:focus {
  color: #559EA5;
}

/* ====== TRANSITIONS & MICRO-ANIMATIONS ====== */
.section, .card, .testimonial-card, .service-list li, .service-list-detailed li, .cta-primary, .cta-secondary,
.feature-grid li, .project-item, .team-bio, .blog-preview-grid article {
  transition: box-shadow 0.22s, transform 0.17s, background 0.16s;
}
.card:hover, .testimonial-card:hover, .service-list li:hover, .service-list-detailed li:hover, .feature-grid li:hover, .project-item:hover, .team-bio:hover, .blog-preview-grid article:hover {
  box-shadow: 0 4px 22px rgba(86,158,165,0.08);
  transform: translateY(-3px) scale(1.02);
  background: #FAFAF7;
}

/* ====== MEDIA QUERIES (MOBILE-FIRST) ====== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .feature-grid,
  .usp-list,
  .service-list,
  .service-list-detailed,
  .case-studies .project-list,
  .blog-list .blog-preview-grid,
  .testimonial-slider,
  .contact-summary,
  .contact-info ul {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section,
  .legal-section {
    padding: 24px 6px;
    margin-bottom: 36px;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 10px;
    padding: 0;
  }
  .hero {
    padding: 24px 0 12px 0;
  }
  .feature-grid,
  .usp-list,
  .trend-list,
  .service-list,
  .benefit-list,
  .case-studies .project-list,
  .blog-list .blog-preview-grid,
  .testimonial-slider,
  .contact-summary,
  .contact-info ul {
    flex-direction: column;
    gap: 14px;
  }
  .service-list-detailed {
    flex-direction: column;
    gap: 14px;
  }
  .service-list-detailed li {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    min-width: unset;
    width: 100%;
    max-width: none;
    padding: 21px 11px;
  }
  .contact-summary li,
  .contact-info ul li {
    font-size: 0.99rem;
  }
  .newsletter-cta .content-wrapper,
  .cta-section .content-wrapper {
    padding: 15px 8px;
    border-radius: 8px;
  }
  .cookie-modal {
    padding: 22px 9vw 18px 9vw;
    max-width: 96vw;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .footer-nav {
    gap: 9px;
    flex-direction: column;
    align-items: center;
  }
}

/* ====== FONTS LOADING ====== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ====== ACCESSIBILITY ====== */
:focus {
  outline: 2px solid #559EA5;
  outline-offset: 2px;
}

/* ====== UTILITY CLASSES ====== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* ===== END Lumina Dynamics CSS ===== */
