/* ÖlInsights - style.css | Soft Pastel Professional Flexbox Design */

/* ================== 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,
u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption,
table, 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: inherit; vertical-align: baseline; box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FBFAF7;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24303A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
img, video {
  max-width: 100%; height: auto; border: none; display: block;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit; background: none; border: none; outline: none;
}

/* ================== SOFT PASTEL COLOR PALETTE =================== */
:root {
  --brand-primary: #174A5B;
  --brand-secondary: #D1A450;
  --brand-accent: #F2F3F4;
  --pastel-blue: #D1EBF6;
  --pastel-green: #D2F6E7;
  --pastel-lilac: #E4DAF9;
  --pastel-pink: #F8D4DF;
  --pastel-yellow: #FAEDD8;
  --pastel-aqua: #E6F5F8;
  --white: #fff;
  --gray-100: #F5F6FA;
  --gray-200: #E4E8F0;
  --gray-300: #C2CCD7;
  --gray-400: #8495A4;
  --gray-900: #24303A;
  --shadow-card: 0 2px 16px rgba(144,199,232,0.13);
  --shadow-card-hover: 0 4px 24px rgba(56, 111, 152, 0.15);
  --border-radius: 18px;
  --border-radius-sm: 10px;
  --transition: all 0.25s cubic-bezier(0.33,1,0.68,1);
}

/* ================== TYPOGRAPHY =================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:wght@400;600;700&display=swap');
h1, .h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-primary);
  margin-bottom: 18px;
  letter-spacing: -0.012em;
}
h2, .h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 0;
}

p, li {
  font-size: 1rem;
  color: var(--gray-900);
  line-height: 1.65;
  margin-bottom: 10px;
}
b, strong {
  font-weight: 700;
}

.text-section {
  max-width: 700px;
  margin-left: auto; margin-right: auto;
  font-size: 1.125rem;
}

/* ================== CONTAINER & SPACING RULES =================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
}
.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;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-900);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== HEADER & MAIN NAVIGATION =================== */
header {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--pastel-aqua) 100%);
  box-shadow: 0 2px 8px rgba(195,211,233,0.14);
  padding: 0;
  position: sticky;
  top: 0; z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  padding-top: 10px; padding-bottom: 10px;
}
.logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(150,170,195,0.15));
  transition: filter 0.2s;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.018em;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-pink);
  color: var(--brand-secondary);
}

.cta-primary {
  display: inline-block;
  background: var(--brand-secondary);
  color: var(--white);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 25px;
  box-shadow: 0 2px 0 #eddbaa77;
  margin-left: 16px;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--pastel-yellow);
  color: var(--brand-primary);
  box-shadow: 0 4px 18px #ffd77355;
}
.cta-secondary {
  display: inline-block;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 26px;
  border-radius: 22px;
  margin-top: 14px;
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid var(--brand-primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-primary);
  color: var(--white);
}

/* ================== MOBILE MENU =================== */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: var(--white);
  font-size: 1.6rem;
  border-radius: 7px;
  padding: 7px 14px;
  margin-left: 14px;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px #eedeff33;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-pink);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 12px 0;
  background: var(--pastel-pink);
  border-radius: 6px;
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  width: 40px; height: 40px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 310;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  padding: 16px 36px 36px 36px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 8px 0 8px 7px;
  border-radius: 8px;
  transition: color 0.13s, background 0.13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-yellow);
  color: var(--brand-secondary);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.98rem;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .header .container, header .container {
    min-height: 64px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }
}

/* ================== HERO / CALL OUT / FEATURE SECTIONS =================== */
.hero-section, .news-hero-section, .contact-hero-section, .thank-you-section {
  min-height: 330px;
  width: 100%;
  background: linear-gradient(120deg, var(--pastel-blue) 8%, var(--pastel-lilac) 90%);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.hero-section .content-wrapper, .news-hero-section .content-wrapper, .contact-hero-section .content-wrapper, .thank-you-section .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1,.thank-you-section h1, .news-hero-section h1, .contact-hero-section h1 {
  color: var(--brand-primary);
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.hero-section p,.thank-you-section p, .news-hero-section p, .contact-hero-section p {
  color: var(--gray-900);
  font-size: 1.2rem;
  margin-bottom: 18px;
  max-width: 560px;
}

.features-section, .callout-section {
  background: var(--pastel-aqua);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 30px 0 30px 0;
  margin-bottom: 48px;
}
.features-section h2, .callout-section h2 {
  margin-bottom: 16px;
}
.features-section .content-wrapper, .callout-section .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}

.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature {
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-sm);
  padding: 22px 18px 18px 18px;
  text-align: left;
  transition: box-shadow 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature:hover {
  box-shadow: var(--shadow-card-hover);
  background: var(--pastel-blue);
}

@media (max-width: 950px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    max-width: 100%;
    min-width: 0;
  }
}

.callout-section .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.callout-section .cta-primary {
  margin-top: 18px;
}

/* =========== TABLES & SUMMARIES =========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 20px 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: var(--pastel-blue);
}
th, td {
  padding: 15px 10px;
  text-align: left;
}
th {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
}
td {
  color: var(--gray-900);
}
tr:not(:last-child) {
  border-bottom: 1.5px solid var(--gray-200);
}
@media (max-width:700px) {
  table, thead, tbody, tr, td, th {
    font-size: 0.93rem;
  }
}

.summary-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.summary-card {
  background: var(--pastel-lilac);
  padding: 20px 18px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
  transition: box-shadow 0.17s;
}
.summary-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* =========== TECHNOLOGY GRID BLOCK =========== */
.technology-grid .grid-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.category {
  background: var(--pastel-aqua);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  padding: 16px 15px;
  min-width: 180px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s;
}
.category:hover {
  box-shadow: var(--shadow-card-hover);
  background: var(--pastel-lilac);
}
.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--brand-primary);
  margin-left: 4px;
  margin-bottom: 8px;
}
.company-tags span {
  background: var(--pastel-yellow);
  border-radius: 14px;
  padding: 4px 11px;
  font-weight: 600;
}

/* =========== INSIGHTS & TRENDS =========== */
.trend-graphs, .expert-comments, .trend-snapshots, .short-interviews {
  background: var(--pastel-blue);
  border-radius: var(--border-radius-sm);
  padding: 18px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.trend-graphs h3, .expert-comments h3, .trend-snapshots h3, .short-interviews h3 {
  font-size: 1.08rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

/* =========== NEWS & INDUSTRY INSIGHTS =========== */
.news-feed-section, .industry-insights-section {
  margin-bottom: 50px;
}
.short-interviews > div {
  background: var(--white);
  border-radius: 11px;
  padding: 8px 13px 10px 13px;
  box-shadow: var(--shadow-card);
  margin-bottom: 13px;
  color: var(--gray-900);
}

/* =========== CONTACT / FORM STYLES =========== */
.contact-details-section ul, .contact-form-section ul {
  margin: 15px 0 6px 0;
  padding-left: 0;
}
.contact-details-section li, .contact-form-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 11px;
}
.contact-details-section img, .contact-form-section img {
  width: 22px;
  height: 22px;
}

/* =========== TESTIMONIALS =========== */
.testimonials-section {
  background: var(--pastel-lilac);
  border-radius: var(--border-radius);
  margin-bottom: 52px;
  padding: 32px 0;
}
.testimonials-section .content-wrapper {
  gap: 24px;
}
.testimonials-section h2 {
  color: var(--brand-primary);
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--pastel-blue);
  color: var(--gray-900);
}

/* CONTRAST FIX FOR ACCESSIBILITY */
.testimonial-card p,
.testimonial-card h4 {
  color: var(--gray-900) !important;
}

/* =========== FOOTER =========== */
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--pastel-lilac) 100%);
  margin-top: 60px;
  padding: 40px 0 28px 0;
  font-size: 1rem;
  color: var(--brand-primary);
  position: relative;
  border-top-right-radius:38px; border-top-left-radius:38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}
.footer-logo-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-logo-nav img {
  width: 56px;
  height: auto;
}
.footer-navigation {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--brand-primary);
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-tagline {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-400);
  margin: 18px 0 0 0;
  max-width: 340px;
  opacity: 0.85;
}

@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-logo-nav {
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .footer-logo-nav img {
    width: 36px;
  }
  .footer-tagline {
    max-width: 90vw;
  }
}

/* =========== RESPONSIVE RULES =========== */
@media (max-width: 1050px) {
  .summary-cards, .feature-grid, .content-grid, .technology-grid .grid-block {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 800px) {
  h1, .h1 { font-size: 1.9rem; }
  h2, .h2 { font-size: 1.33rem; }
  .container { max-width: 99vw; padding-left: 9px; padding-right: 9px; }
}
@media (max-width: 650px) {
  .hero-section, .news-hero-section, .contact-hero-section, .thank-you-section {
    min-height: 160px;
    padding: 18px 0;
  }
}
@media (max-width: 800px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 590px) {
  .card, .summary-card, .category, .testimonial-card {
    padding: 14px 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  .card, .summary-card, .category {
    min-width: unset; max-width: 100%;
  }
}

/* ========== ANIMATIONS =========== */
.cta-primary, .cta-secondary, .main-nav a, .feature, .card, .summary-card, .testimonial-card, .category {
  transition: var(--transition);
}

/* ========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; bottom: 0;
  background: var(--pastel-yellow);
  box-shadow: 0 -2px 26px #bc90ab33;
  border-top: 2px solid var(--pastel-lilac);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.02rem;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner span {
  color: var(--brand-primary);
  font-size: 1rem;
  max-width: 420px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  background: var(--brand-primary);
  color: var(--white);
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-right: 3px;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--white);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 9px;
  }
}

/* ========== COOKIE MODAL =========== */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(70, 108, 140, 0.23);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: var(--white);
  min-width: 280px;
  max-width: 98vw;
  width: 400px;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 32px #929baf22;
  padding: 30px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation: appearModal 0.3s cubic-bezier(0.33,1,0.68,1);
}
@keyframes appearModal {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-close {
  background: var(--pastel-pink);
  border-radius: 50%;
  color: var(--brand-primary);
  font-size: 1.3rem;
  border: none;
  width: 34px; height: 34px;
  position: absolute;
  right: 14px; top: 14px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
.cookie-modal h2 {
  font-size: 1.1rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 13px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--brand-primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 17px; height: 17px;
  margin-right: 3px;
}
.cookie-category input[disabled], .cookie-category input:disabled {
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-actions button {
  font-size: 0.99rem;
  padding: 8px 19px;
  border-radius: 14px;
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-actions button:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

@media (max-width: 480px) {
  .cookie-modal-dialog {
    width: 95vw; padding: 16px 8px 12px 11px;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-10 { gap: 10px; }
.hide { display: none !important; }

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