/* =========================================
   Lumen Stream Scandinavian Clean CSS
   Author: Senior CSS Developer & UI Designer
   ========================================= */

/* === 1. CSS RESET & BASES === */
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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #FAFAF7; color: #1E2D40; }
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
table { border-collapse: collapse; border-spacing: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

/* === 2. FONT FACES ===  */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
html, body {
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E2D40;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.2; }
h3 { font-size: 1.125rem; margin-bottom: 10px; line-height: 1.25; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26384C;
}

@media (min-width: 600px){
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  p, li { font-size: 1.07rem; }
}
@media (min-width: 950px){
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}

/* === 3. BRAND COLORS & VARS === */
:root {
  --ls-primary: #1E2D40;
  --ls-secondary: #36A57C;
  --ls-accent: #F7E9B8;
  --ls-bg: #FAFAF7;
  --ls-footer-bg: #F4F6F1;
  --ls-card-bg: #FFFFFF;
  --ls-shadow: 0 2px 10px rgba(30,45,64,0.07), 0 1.5px 4px rgba(54,165,124,0.02);
  --ls-border: #E3E5E0;
  --ls-text: #1E2D40;
  --ls-text-light: #364B5C;
}

/* === 4. MAIN LAYOUT STRUCTURE === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (min-width: 768px) {
  .section { padding: 48px 30px; }
  .content-wrapper { gap: 32px; }
}

/* === 5. HEADER & MAIN NAVIGATION === */
header {
  background: var(--ls-bg);
  box-shadow: 0 2px 8px rgba(30,45,64,0.06);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
header a img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ls-primary);
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--ls-accent);
  color: var(--ls-secondary);
}
.btn-primary {
  padding: 10px 24px;
  background: var(--ls-secondary);
  color: var(--ls-card-bg);
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(54,165,124,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--ls-primary);
  color: var(--ls-accent);
  box-shadow: 0 4px 16px rgba(30,45,64,0.13);
}
.btn-secondary {
  padding: 10px 24px;
  background: var(--ls-accent);
  color: var(--ls-primary);
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 8px rgba(247,233,184,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--ls-secondary);
  color: var(--ls-card-bg);
  box-shadow: 0 4px 16px rgba(54,165,124,0.14);
}

/* --- Responsive header --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ls-secondary);
  color: #fff;
  border-radius: 8px;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border: none;
  margin-left: 16px;
  transition: background 0.12s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--ls-primary);
  color: var(--ls-accent);
}
@media (min-width: 1020px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1019px) {
  .main-nav { display: none !important; }
}

/* === 6. MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,45,64, 0.96);
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 6px 0;
  background: var(--ls-secondary);
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border: none;
  transition: background 0.14s, color 0.14s;
  z-index: 300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--ls-accent);
  color: var(--ls-primary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 36px;
  gap: 12px;
}
.mobile-nav a {
  width: 100%;
  font-size: 1.25rem;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--ls-accent);
  background: rgba(247,233,184, 0.09);
  border-radius: 6px;
  padding-left: 12px;
}

@media (min-width: 1020px) {
  .mobile-menu { display: none !important; }
}

/* === 7. HERO SECTIONS === */
.hero {
  background: var(--ls-bg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 44px 0 24px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero p {
  font-size: 1.08rem;
  color: var(--ls-text-light);
  max-width: 650px;
}
@media (min-width: 620px){
  .hero { padding: 64px 0 44px 0; }
  .hero .container { gap: 32px; }
  .hero .content-wrapper { gap: 22px; }
}

/* === 8. FLEX LAYOUT PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--ls-card-bg);
  border-radius: 18px;
  box-shadow: var(--ls-shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}
.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;
  background: #fff;
  box-shadow: 0 4px 24px rgba(30,45,64,0.06);
  border: 1px solid var(--ls-border);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  min-width: 260px;
  color: var(--ls-primary);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(54,165,124,0.09);
  border-color: var(--ls-accent);
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ls-text);
  margin-bottom: 6px;
}
.testimonial-card span { color: var(--ls-secondary); font-weight: 700; font-family: 'Montserrat', Arial, sans-serif; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(54,165,124,0.03);
}

/* Reusable FAQ section styling */
.faq ul { display: flex; flex-direction: column; gap: 18px; }
.faq li { background: #fff; border-radius: 14px; box-shadow: var(--ls-shadow); padding: 20px 18px; border-left: 4px solid var(--ls-secondary); color: var(--ls-text); }
/* Table wrapper for comparison-table demo */
.comparison-table { overflow-x: auto; }
.comparison-table table {
  min-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--ls-shadow);
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.comparison-table th,
.comparison-table td {
  padding: 15px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--ls-border);
}
.comparison-table th {
  background: var(--ls-footer-bg);
  color: var(--ls-secondary);
}
.comparison-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  .section { margin-bottom: 40px; padding: 22px 8px; }
  .card-container, .content-grid, .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .faq li, .card {
    padding: 14px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
}

/* === 9. ABOUT / TEAM CARDS === */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.team-bio {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--ls-shadow);
  padding: 18px 16px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .team-grid { gap: 12px; }
  .team-bio { padding: 12px 8px; }
}

/* === 10. BLOG === */
.blog-article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-article-grid article {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--ls-shadow);
  padding: 18px 16px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 6px;
  transition: box-shadow .18s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article-grid article:hover,
.blog-article-grid article:focus {
  box-shadow: 0 8px 28px rgba(54,165,124,0.12);
}
.featured-blog-posts h3 {
  margin-bottom: 8px;
}
.featured-blog-posts ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(30,45,64,0.03);
}

/* === 11. GUIDES === */
.quick-tips-section {
  margin-top: 10px; padding: 10px 14px;
  background: var(--ls-footer-bg);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(54,165,124,0.03);
}
.quick-tips-section ul { gap: 7px; }
.quick-tips-section h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ls-secondary);
}

/* === 12. NEWSLETTER SECTION === */
.newsletter {
  background: var(--ls-footer-bg);
  border-radius: 16px;
  box-shadow: var(--ls-shadow);
  margin-top: 38px;
  padding: 32px 24px;
}
.newsletter h2 { color: var(--ls-secondary); margin-bottom: 8px; }
@media (max-width: 640px) {
  .newsletter { margin-top: 20px; padding: 18px 8px; }
}

/* === 13. CTA === */
.cta {
  background: var(--ls-secondary);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(54,165,124,0.11);
  text-align: center;
  margin-bottom: 50px;
  padding: 44px 14px;
}
.cta .btn-secondary {
  margin-top: 18px;
  font-size: 1.1rem;
}
.cta h2, .cta p { color: #fff; }

/* === 14. FOOTER === */
footer {
  background: var(--ls-footer-bg);
  padding: 36px 0 0 0;
  color: var(--ls-text-light);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
}
.footer-contact {
  flex: 2 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact img { height: 32px; margin-bottom: 8px; }
.footer-contact a { color: var(--ls-secondary); transition: color 0.13s; }
.footer-contact a:hover, .footer-contact a:focus { color: var(--ls-primary); }
.footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ls-text-light);
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.14s, text-decoration 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--ls-secondary);
  text-decoration: underline;
}
.footer-social {
  flex: 0 1 120px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px rgba(30,45,64,0.04);
  transition: background 0.16s, box-shadow 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--ls-accent);
  box-shadow: 0 6px 16px rgba(54,165,124,0.12);
}
.footer-social img {
  width: 22px; height: 22px;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* === 15. ICONS & LISTS === */
ul, ol {
  padding-left: 0;
}
li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
ul > li:last-child { margin-bottom: 0; }
li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 6px;
}

/* === 16. POLICY PAGES === */
.policy {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  margin-bottom: 48px;
  box-shadow: 0 2px 10px rgba(30,45,64,0.07);
}
.policy h1, .policy h2 {
  font-family: 'Montserrat', Arial, sans-serif;
}
.policy ul {
  margin-bottom: 14px;
}
.policy ul li {
  background: transparent;
  border: none;
  color: var(--ls-text);
  margin-bottom: 7px;
  font-size: 1.05rem;
  gap: 6px;
}

/* === 17. THANK YOU === */
.thank-you {
  background: var(--ls-footer-bg);
  border-radius: 16px;
  box-shadow: var(--ls-shadow);
  margin: 30px 0;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* === 18. MAP SECTION === */
.map {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--ls-shadow);
  margin-bottom: 40px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
}

/* === 19. ANIMATIONS === */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .footer-social a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.15s, color 0.15s, box-shadow 0.17s, transform 0.13s;
}
.card, .testimonial-card, .feature-item, .team-bio, .faq li, .blog-article-grid article {
  transition: box-shadow 0.18s, border-color 0.15s;
}
.card:hover, .feature-item:hover, .team-bio:hover {
  box-shadow: 0 6px 24px rgba(54,165,124,0.10);
  border-color: var(--ls-accent);
}

/* === 20. ACCESSIBLE FOCUS === */
a:focus, button:focus {
  outline: 2px solid var(--ls-secondary);
  outline-offset: 2px;
}

/* === 21. COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 22px rgba(30,45,64,0.09);
  z-index: 4000;
  padding: 28px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-top: 1px solid var(--ls-border);
  transition: transform 0.38s cubic-bezier(.72,.13,.29,.97), opacity 0.22s;
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  color: var(--ls-primary);
  max-width: 700px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  background: var(--ls-secondary);
  color: #fff;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--ls-accent);
  color: var(--ls-primary);
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: var(--ls-primary);
  color: var(--ls-accent);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--ls-primary);
  color: var(--ls-accent);
}
.cookie-banner .cookie-btn.reject {
  background: #eac674;
  color: var(--ls-primary);
}
.cookie-banner .cookie-btn.reject:hover { background: #ffebc2; color: var(--ls-secondary); }
.cookie-banner .cookie-btn:last-child { margin-right: 0; }
@media (max-width: 720px) {
  .cookie-banner .cookie-btns { flex-direction: column; gap: 10px; }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,45,64,0.46);
  z-index: 5001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 62px rgba(30,45,64,0.19);
  padding: 34px 26px 22px 26px;
  max-width: 420px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 6000;
  position: relative;
  animation: fadeInModal 0.36s cubic-bezier(.7,.5,.2,1);
}
.cookie-modal h2 {
  color: var(--ls-secondary);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--ls-border);
}
.cookie-modal .category:last-child {
  border: none;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E4ECE7;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--ls-secondary);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.23s cubic-bezier(.78,.12,.36,1);
  box-shadow: 0 1px 5px rgba(30,45,64,0.03);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .switch input:disabled + .slider {
  opacity: 0.7;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 8px 18px;
  border-radius: 18px;
  background: var(--ls-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: var(--ls-primary);
  color: var(--ls-accent);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--ls-accent);
  color: var(--ls-primary);
  font-size: 1.05rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .11s, color .11s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--ls-secondary);
  color: #fff;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 620px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 18px 8px 10px 8px;
  }
}

/* === 22. MISCELLANEOUS === */
strong { font-weight: 700; color: var(--ls-secondary); }
::-webkit-input-placeholder { color: #9eaeb9; opacity:1; }
::-moz-placeholder { color: #9eaeb9; opacity:1; }
:-ms-input-placeholder { color: #9eaeb9; opacity:1; }
::placeholder { color: #9eaeb9; opacity:1; }

/* --- Spacing for minimum margins --- */
.card, .testimonial-card, .team-bio, .feature-item, .faq li, .blog-article-grid article {
  margin-bottom: 20px;
}
.card-container, .content-grid, .team-grid, .blog-article-grid {
  gap: 20px;
}
.section, .policy { margin-bottom: 60px; }
@media (max-width: 800px) {
  .section, .policy { margin-bottom: 36px; }
}

/* === 23. SELECTION === */
::selection { background: var(--ls-accent); color: var(--ls-primary); }

/* ========== END ========== */
