/* === 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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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 {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
}
body {
  min-height: 100vh;
  background: #111418;
  color: #F2F4F8;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F7BB42;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F2F4F8;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #BBD6E2;
  font-weight: 400;
  margin-bottom: 20px;
}

/* === BRAND COLORS & VARIABLES === */
:root {
  --color-primary: #12486B;
  --color-secondary: #F7BB42;
  --color-accent: #F2F4F8;
  --color-bg-dark: #111418;
  --color-bg: #16202A;
  --color-offwhite: #F2F4F8;
  --color-border: #26303A;
  --color-neon-cyan: #32FFF4;
  --color-neon-blue: #21B6FF;
  --box-radius: 18px;
  --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);
  --shadow-elevate: 0 4px 28px 0 rgba(18,72,107,0.15), 0 1.5px 4px 0 rgba(50,255,244,0.04);
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Mandatory classes */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg);
  border-radius: var(--box-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-elevate);
  position: relative;
  transition: box-shadow var(--transition-fast);
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(33,182,255,0.22);
  z-index: 2;
}
.card-content {
  padding: 28px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: #F2F4F8;
  color: #14191f;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(32,255,244,0.13);
  min-width: 220px;
  max-width: 360px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #232B37;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 500;
  color: #12486B;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-wrapper.feature-grid {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--color-bg);
  border-radius: var(--box-radius);
  box-shadow: 0 0px 18px 0 rgba(21,182,255,0.09);
  padding: 32px 23px;
  min-width: 190px;
  flex: 1 1 230px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 7px 26px 0 rgba(33,255,244,0.19);
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 18px;
}
.feature h3 {
  color: var(--color-neon-cyan);
}

/* === HEADER === */
header {
  width: 100%;
  background: linear-gradient(89deg, #12486B 65%, #16202A 100%);
  position: relative;
  box-shadow: 0 2px 16px 0 rgba(18,72,107,0.09);
  z-index: 20;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #F2F4F8;
  transition: color var(--transition-fast);
  padding: 6px 4px;
  border-radius: 6px;
}
.desktop-nav a.cta.primary {
  background: linear-gradient(90deg, #21B6FF 60%, #32FFF4 100%);
  color: #111418;
  padding: 8px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.06rem;
  margin-left: 14px;
  box-shadow: 0 6px 24px 0 rgba(33,255,244,0.18);
  letter-spacing: 0.02em;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.desktop-nav a.cta.primary:hover,
.desktop-nav a.cta.primary:focus {
  background: linear-gradient(90deg, #32FFF4 40%, #21B6FF 100%);
  color: #23293A;
  box-shadow: 0 10px 32px 0 rgba(33,255,244,0.23);
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: #21B6FF;
  text-decoration: none;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #F7BB42;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.15s;
  display: none;
  z-index: 33;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #21B6FF;
  background: rgba(33,255,244,0.07);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(98deg,#0A151F 93%, #12486B 120%);
  box-shadow: 0 12px 66px 0 rgba(33,182,255,0.39);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.23s cubic-bezier(.61,.03,.55,.9);
  will-change: transform, opacity;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #32FFF4;
  background: none;
  border: none;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color var(--transition-fast), background 0.15s;
  border-radius: 10px;
  z-index: 102;
}
.mobile-menu-close:focus {
  outline: 2px solid #21B6FF;
  background: rgba(33,255,244,0.1);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 48px 38px 38px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  padding: 10px 0;
  color: #F7BB42;
  border-radius: 7px;
  width: 100%;
  display: block;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #111418;
  background: linear-gradient(90deg, #32FFF4 40%, #21B6FF 100%);
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}

/* --- Show/hide nav on mobile/desktop --- */
@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .desktop-nav { display: flex; }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(110deg,#12486B 46%, #21B6FF 109%);
  padding: 48px 0 52px 0;
  margin-bottom: 60px;
  box-shadow: 0 6px 30px 0 rgba(33,255,244,0.06);
}
.hero .container {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero h1 {
  color: #F2F4F8;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-shadow: 0 4px 32px rgba(33,255,244,0.13);
  font-weight: 900;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* === CTA BUTTONS === */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 36px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 20px 0 rgba(50,255,244,0.13);
  transition: box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  border: none;
}
.cta.primary {
  background: linear-gradient(90deg, #21B6FF 60%, #32FFF4 100%);
  color: #0A151F;
  letter-spacing: 0.03em;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #32FFF4 30%, #21B6FF 100%);
  color: #23293A;
  box-shadow: 0 8px 30px 0 rgba(50,255,244,0.22);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.cta.secondary {
  background: transparent;
  border: 2px solid #32FFF4;
  color: #32FFF4;
  font-weight: 600;
  margin-left: 12px;
  padding: 9px 30px;
  transition: background var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #21B6FF;
  color: #0A151F;
  border-color: #21B6FF;
  box-shadow: 0 6px 22px 0 rgba(18,72,107,0.14);
  text-decoration: none;
  outline: none;
}

/* === ABOUT PAGE COMPONENTS === */
.expert-bio {
  background: #16202A;
  border-left: 5px solid #32FFF4;
  border-radius: 13px;
  padding: 22px 20px 20px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(18,72,107,0.09);
}
.qualifications, .contributions {
  background: #132433;
  border-radius: 12px;
  padding: 17px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(50,255,244,0.05);
}
.qualifications h4, .contributions h4 { color: #32FFF4; }

/* === FAQ ACCORDION (Vanliga Frågor) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #16202A;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 1px 8px 0 rgba(50,255,244,0.06);
  transition: box-shadow var(--transition-fast);
}
.faq-item h3 {
  color: #21B6FF;
  font-size: 1.21rem;
  margin-bottom: 8px;
}
.faq-item a {
  color: #21B6FF;
  text-decoration: underline;
  font-weight: 500;
}
.faq-item p {
  color: #F2F4F8;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 24px 0 rgba(33,255,244,0.14);
}

/* === BLOG PAGE COMPONENTS === */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-post {
  background: #16202A;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 1px 12px 0 rgba(50,255,244,0.08);
  min-width: 210px;
  flex: 1 1 284px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.blog-post h3 {
  color: #21B6FF;
}
.blog-post.featured {
  border: 2px solid #32FFF4;
  box-shadow: 0 4px 28px 0 rgba(33,255,244,0.12);
  background: #14223B;
}
.blog-categories {
  margin-top: 20px;
  background: #112031;
  border-radius: 15px;
  padding: 18px 16px 16px 20px;
}
.blog-categories h4 {
  color: #F7BB42;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.blog-categories li {
  background: #21B6FF;
  color: #111418;
  border-radius: 10px;
  padding: 4px 12px;
  font-weight: 500;
  font-size: .97rem;
  margin-bottom: 6px;
}

/* === CONTACT SECTION === */
.contact-details {
  background: #16202A;
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px 0 rgba(50,255,244,0.08);
  min-width: 230px;
  flex: 1 1 330px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-info {
  background: #112031;
  border-radius: 14px;
  padding: 20px 18px;
  flex: 2 1 340px;
  box-shadow: 0 1px 8px 0 rgba(50,255,244,0.06);
  margin-bottom: 20px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #12486B 70%, #0A151F 100%);
  color: #F2F4F8;
  padding: 38px 0 18px 0;
  width: 100%;
  box-shadow: 0 -2px 18px 0 rgba(18,72,107,0.08);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo img {
  height: 43px;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #F2F4F8;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  border-radius: 7px;
  padding: 5px 3px;
}
.footer-menu a:hover {
  color: #21B6FF;
  background: rgba(50,255,244,0.05);
}
footer address {
  font-size: .99rem;
  color: #BBD6E2;
  line-height: 1.8;
  font-style: normal;
}
footer address img {
  height: 19px;
  width: 19px;
  margin-right: 5px;
  vertical-align: middle;
}
footer a {
  color: #F7BB42;
  font-weight: 500;
  transition: color var(--transition-fast);
}
footer a:hover {
  color: #32FFF4;
}

/* === MANDATORY SPACING & FLEX PATTERNS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper > *,
.section > *,
.card-container > *,
.content-grid > *,
.text-image-section > *,
.testimonial-card > *,
.feature-item > * {
  margin-bottom: 0;
}
.card-container > *, 
.content-grid > *, 
.section > *, 
.text-image-section > *, 
.feature-item > *, 
.testimonial-card > * {
  margin-right: 0;
}

/* Additional global margin between cards/sections */
.card, .feature, .testimonial-card, .blog-post, .contact-details, .map-info, .expert-bio, .qualifications, .contributions {
  margin-bottom: 20px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
  .hero { padding: 40px 0 36px 0; }
  section { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .content-wrapper,
  .content-grid,
  .feature-grid,
  .card-container,
  .blog-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature, .card, .blog-post, .testimonial-card, .contact-details, .map-info, .expert-bio, .qualifications, .contributions {
    min-width: unset;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .footer-logo img { margin-bottom: 0; }
  .footer-menu { flex-direction: row; gap: 18px; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.55rem !important; }
  h2 { font-size: 1.2rem !important; }
  .hero { padding: 26px 0 24px 0; }
  footer .container {
    padding: 0 5px;
  }
}
/* --- Give enough white space between all major elements for mobile --- */
@media (max-width: 560px) {
  section { padding: 24px 5px; margin-bottom: 32px; }
  .cta { padding: 8px 17px; font-size: 1rem; }
}

/* === ANIMATIONS / MICRO-INTERACTIONS === */
.card, .feature, .blog-post, .testimonial-card, .faq-item {
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1), transform 0.19s cubic-bezier(.4,0,.2,1);
}
.card:hover,
.feature:hover,
.blog-post:hover,
.testimonial-card:hover,
.faq-item:hover {
  box-shadow: 0 7px 30px 0 rgba(33,255,244,0.16);
  transform: scale(1.03);
  z-index: 3;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #111418 64%, #12486B 100%);
  box-shadow: 0 -2px 20px 0 rgba(33,255,244,0.14);
  color: #F2F4F8;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3000;
  gap: 18px;
  animation: bannerEnter 0.6s cubic-bezier(.4,0,.2,1);
}
@keyframes bannerEnter {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #F2F4F8;
  font-size: 1rem;
  max-width: 660px;
  margin-bottom: 0;
}
.cookie-banner .cookie-options {
  display: flex;
  gap: 14px;
}
.button-cookie {
  padding: 7px 26px;
  border-radius: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(93deg, #21B6FF 50%, #32FFF4 100%);
  color: #111418;
  margin-right: 2px;
  margin-bottom: 0;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 1px 6px 0 rgba(33,255,244,0.07);
}
.button-cookie:hover, .button-cookie:focus {
  background: linear-gradient(93deg, #32FFF4 40%, #21B6FF 100%);
  color: #23293A;
  outline: none;
  box-shadow: 0 3px 16px rgba(33,255,244,0.17);
}
.button-cookie.secondary {
  background: transparent;
  color: #F2F4F8;
  border: 2px solid #32FFF4;
  margin-left: 2px;
}
.button-cookie.secondary:hover, .button-cookie.secondary:focus {
  background: #21B6FF;
  color: #111418;
  border-color: #21B6FF;
}
.button-cookie.link {
  background: none;
  color: #F7BB42;
  border: none;
  text-decoration: underline;
  box-shadow: none;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(18, 72, 107, 0.91);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #16202A;
  color: #F2F4F8;
  border-radius: 17px;
  padding: 36px 28px 30px 28px;
  box-shadow: 0 11px 40px 0 rgba(21,182,255,0.32);
  max-width: 460px;
  width: 95vw;
  animation: modalEnter .37s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes modalEnter {
  0% { transform: scale(.81); opacity: 0; }
  65% { transform: scale(1.10); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  color: #32FFF4;
  font-weight: 700;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category {
  padding: 9px 0 11px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #26303A;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 46px;
  height: 24px;
  background: #F2F4F8;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.cookie-modal .cookie-toggle:checked {
  background: linear-gradient(90deg,#32FFF4 40%, #21B6FF 100%);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #12486B;
  position: absolute;
  left: 2px;
  top:2px;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), background var(--transition-fast);
}
.cookie-modal .cookie-toggle:checked::after {
  transform: translateX(22px);
  background: #32FFF4;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: 0.52;
  cursor: default;
}
.cookie-modal .cookie-category strong {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  color: #21B6FF;
}
.cookie-modal .cookie-category small {
  font-size: .93rem;
  color: #BBD6E2;
  display: block;
}
.cookie-modal .options {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 11px;
}

.cookie-modal .button-cookie {
  min-width: 92px;
  font-size: .99rem;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 21px 10px 13px 10px; }
}

/* === THANK YOU PAGE (confirmation-message) === */
.confirmation-message {
  background: #16202A;
  color: #32FFF4;
  padding: 24px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  box-shadow: 0 2px 18px 0 rgba(18,72,107,0.13);
  text-align: center;
}

/* === UTILITIES === */
.text-center { text-align: center !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }

/* === END OF STYLE.CSS === */