/* ==========================================================================
   0) TEEMA & PERUSMUUTTUJAT
   ========================================================================== */
:root {
  --bg: #121212;
  --text: #f2f2f2;
  --muted: #b0b0b0;
  --line: #333;
  --accent: #ffffff;
  --cta: #f79320;
  --cta-dark: #d87612;

  --pad: 24px;
  --hero-img: url("tausta.jpg");
  --logo-h: 64px;
  --logo-h-sm: 46px;
}

/* ==========================================================================
   1) RESET & TYPOGRAFIA
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "Lato", system-ui, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  scroll-behavior: smooth;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: var(--cta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cta-dark); }

h1, h2, h3 {
  font-family: "Lato", system-ui, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 6px;
}
h1 { font-size: clamp(28px, 6vw, 35px); line-height: 1.25; }
h2 { font-size: clamp(24px, 4vw, 32px); }
h3 { font-size: clamp(18px, 3vw, 22px); }

/* ==========================================================================
   2) RAKENNE
   ========================================================================== */
.section {
  padding: 100px 0;
}
@media (max-width: 700px) {
  .section { padding: 70px 0; }
}
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ==========================================================================
   3) HEADER
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a1a1a;
  border-bottom: 1px solid #222;
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 110px;
  padding: 0 40px;
}
.brand { justify-self: start; display: flex; align-items: center; }
.brand-logo { height: var(--logo-h); width: auto; }
.menu {
  justify-self: center;
  display: flex;
  gap: 48px;
}
.menu a {
  font-size: 15px;
  letter-spacing: 3px;
  color: #f2f2f2;
  text-transform: uppercase;
}
.menu a:hover { opacity: .65; }

@media (max-width: 600px) {
  .menu { display: none !important; }
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 16px;
    height: 70px;
  }
  .brand {
    justify-self: center;
  }
  .brand-logo {
    height: var(--logo-h-sm);
  }
}
/* ==========================================================================
   4) BUTTONIT
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid var(--cta);
  background: var(--cta);
  color: #111;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 6px;
  transition: 
    background-color .25s ease,
    color .25s ease,
    transform .2s ease,
    box-shadow .25s ease;
}
.btn:hover,
.btn:focus-visible {
  background: var(--cta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
/* ==========================================================================
   5) HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 50%,
    var(--bg) 100%
  );
}

.hero-center {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
#hero-title {
  font-family: "Lato", system-ui, Arial, sans-serif;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.28;
  margin: 0 auto 32px;
  text-align: center;
  max-width: 1250px;
  display: inline-block;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero .sub {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}
.hero .btn {
  margin-top: 8px;
  padding: 14px 26px;
  font-size: 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(247,147,32,0.3);
}
@media (max-width: 700px) {
  .hero {
    background-attachment: scroll;
    background-position: center;
    padding: 120px 0 100px;
    min-height: 85vh;
  }
  #hero-title {
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: 3px;
    line-height: 1.4;
    max-width: 90%;
    margin-bottom: 28px;
  }
  .hero .sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .hero .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .hero-center {
    padding: 0 16px;
  }
}
/
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll; 
  }
}
/* ==========================================================================
   6) KUKA / MITEN / OSAAMINEN
   ========================================================================== */
.section-grid { 
  background: #141414; 
}
.section-inner.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.section-text h2 {
  font-size: 36px;
  margin-bottom: 28px;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.section-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.section-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.osaaminen-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.osaaminen-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.6;
}
.osaaminen-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cta);
  font-size: 18px;
  line-height: 1;
}
.osaaminen-list em {
  opacity: .65;
}
.section-textblock {
  background: #1b1b1b;
  text-align: center;
  padding: 90px 0;
}
@media (max-width: 900px) {
  .section-inner.grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-img {
    order: -1;
    max-width: 420px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 600px) {
  .section-text h2 {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .section-text p,
  .osaaminen-list li {
    font-size: 16px;
    line-height: 1.55;
  }
  .osaaminen-list li::before {
    color: var(--cta) !important;
  }
}
/* ==========================================================================
   6A) MISSIO
   ========================================================================== */
#missio {
  background: #1b1b1b;
  padding: 90px 0;
}
#missio .section-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
}
#missio .section-text h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 36px;
}
#missio .lead { font-weight: 600; }
#missio .highlight {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 22px;
}
#missio .highlight .cta { color: var(--cta); }
@media (max-width: 700px) {
  #missio { padding: 70px 0; }
  #missio .section-text { padding: 0 16px; line-height: 1.7; }
  #missio .section-text p { font-size: 16px; }
}

/* ==========================================================================
   7) VALMENNUKSET – KORJATTU LISTAUS JA MOBIILIKÄYTÖS
   ========================================================================== */

.valmennus-hero {
  position: relative;
  min-height: 100vh;
  background: url("valmennus.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.valmennus-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.valmennus-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  padding: 0 20px;
}

.valmennus-title {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 56px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.vkortti-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.vkortti {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 36px 32px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  text-align: left;
  color: #fff;
  transition: transform .4s ease, box-shadow .25s ease, border-color .25s ease;
}
.vkortti:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}
.vkortti:first-child {
  border: 2px solid var(--cta);
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.vkortti h3 {
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: 5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.vkortti-desc {
  margin-bottom: 22px;
  min-height: 120px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}
.vkortti-desc strong {
  color: var(--cta);
}
.vkortti ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.vkortti ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  word-break: break-word;
}
.vkortti ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cta);
  font-size: 20px;
  line-height: 1.4;
}
.vkortti-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vkortti-hinta {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  opacity: .85;
}
.vkortti:first-child .vkortti-hinta {
  color: var(--cta);
  opacity: 1;
}
.vextra {
  text-align: center;
  margin-top: 48px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  letter-spacing: 0.8px;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 900px) {
  .valmennus-hero {
    padding: 80px 0;
    min-height: 80vh;
    background-attachment: scroll;
  }
  .valmennus-inner {
    padding: 0 16px;
  }
  .valmennus-title {
    font-size: clamp(22px, 5vw, 30px);
    letter-spacing: 5px;
    margin-bottom: 40px;
  }
  .vkortti-wrap {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
  }
  .vkortti {
    padding: 28px 22px;
    text-align: left;
  }
  .vkortti ul li {
    padding-left: 22px;
    text-align: left;
  }
  .vkortti h3 {
    font-size: 20px;
    letter-spacing: 3px;
    text-align: center;
  }
  .vkortti-desc {
    text-align: center;
  }
  .vkortti-footer {
    margin-top: 20px;
  }
  .vextra {
    margin-top: 36px;
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.55;
  }
}
@media (max-width: 900px) {
  .valmennus-hero {
    padding: 70px 0 60px;
    background-attachment: scroll;
  }
  .valmennus-inner {
    padding: 0 16px;
  }
  .valmennus-title {
    font-size: clamp(22px, 5vw, 30px);
    letter-spacing: 5px;
    margin-bottom: 36px;
  }
  .vkortti-wrap {
    flex-direction: column;
    gap: 26px;
    padding: 0 12px;
  }
  .vkortti {
    padding: 26px 22px;
    text-align: left;
  }
  .vkortti h3 {
    font-size: 20px;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 16px;
  }
  .vkortti-desc {
    text-align: center;
    margin-bottom: 16px;
  }
  .vkortti-desc p {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 8px;
  }
  .vkortti ul {
    margin-bottom: 18px;
  }
  .vkortti ul li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 22px;
  }
  .vkortti-footer {
    margin-top: 10px;
    text-align: center;
  }
  .vkortti-hinta {
    font-size: 20px;
  }
  .vextra {
    margin-top: 30px;
    font-size: 15px;
    padding: 0 18px;
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .valmennus-hero {
    padding: 60px 0 50px;
  }
  .vkortti {
    padding: 22px 18px;
  }
  .vkortti h3 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .vkortti-desc p {
    font-size: 15px;
    line-height: 1.45;
  }
  .vkortti ul li {
    font-size: 14.5px;
    line-height: 1.45;
  }
  .vkortti-hinta {
    font-size: 19px;
  }
  .vextra {
    font-size: 14.5px;
    padding: 0 14px;
    line-height: 1.45;
  }
}
/* ==========================================================================
   8) KYSELY
   ========================================================================== */
.kysely-section {
  background: #1b1b1b;
  padding: 120px 0;
}
.kysely-section .section-inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.kysely-title {
  text-align: center;
  margin-bottom: 56px;
  font-size: clamp(26px, 5vw, 32px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
}
.kysely-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.kysely-card {
  padding: 48px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  transition: opacity .5s ease, transform .5s ease;
  opacity: 0;
  transform: translateY(20px);
}
.kysely-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.kysely-step { display: none; }
.kysely-step.active { display: block; }
.kysely-step h3 {
  margin: 8px 0 26px;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  border-left: 3px solid var(--cta);
  padding-left: 12px;
}
.kysely-progress {
  height: 8px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 32px;
  border-radius: 50px;
  overflow: hidden;
}
.kysely-progress .kysely-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cta), #d4a166);
  box-shadow: 0 0 8px rgba(255,193,120,0.7);
  transition: width .45s ease;
}
.kysely-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.kysely-options label {
  width: calc(50% - 7px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 8px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.kysely-options label:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.kysely-options input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  position: relative;
  transition: border-color .25s ease;
}
.kysely-options input:checked {
  border-color: var(--cta);
}
.kysely-options input:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--cta);
  border-radius: 50%;
}
.kysely-options input:checked + span {
  font-weight: 600;
  color: var(--cta);
}
.kysely-options span {
  font-size: 15px;
  color: #fff;
}
.kysely-fields {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.kysely-fields input,
.kysely-fields textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 8px;
  transition: border-color .25s ease, background .25s ease;
  font-size: 16px;
}
.kysely-fields input:focus,
.kysely-fields textarea:focus {
  border-color: var(--cta);
  background: rgba(255,255,255,0.12);
}
.kysely-fields input::placeholder,
.kysely-fields textarea::placeholder {
  color: rgba(255,255,255,0.7);
}
.kysely-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.kysely-actions .btn {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  border: none;
  border-radius: 6px;
  background: #aa732e;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.kysely-actions .btn:hover:not([disabled]) {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
  background: #c88939;
}
.kysely-actions .btn[disabled] {
  opacity: .4;
  cursor: not-allowed;
}
.kysely-privacy {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  margin-top: 14px;
  text-align: center;
}
.kysely-privacy a {
  color: var(--cta);
  text-decoration: none;
}
.kysely-privacy a:hover {
  text-decoration: underline;
}
.kysely-success {
  text-align: center;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.kysely-success.visible {
  opacity: 1;
  transform: translateY(0);
}
.kysely-success h3 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.kysely-success p {
  font-size: 18px;
  opacity: .92;
}
input.error {
  border: 2px solid #dc2626;
  background-color: rgba(220,38,38,0.25);
}
.field-error {
  display: none;
  font-size: 14px;
  color: #ffbaba;
  margin-top: 4px;
}
.kysely-step.active {
  animation: fadeUp .3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .kysely-section {
    padding: 80px 0;
  }
  .kysely-card {
    padding: 28px 20px;
  }
  .kysely-options {
    flex-direction: column;
    gap: 10px;
  }
  .kysely-options label {
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
  }
  .kysely-fields input,
  .kysely-fields textarea {
    font-size: 15px;
    padding: 12px 14px;
  }
  .kysely-actions {
    flex-direction: column;
    gap: 14px;
  }
  .kysely-actions .btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
  .kysely-success {
    padding: 60px 20px;
  }
}
/* ==========================================================================
   9) FOOTER
   ========================================================================== */
footer {
  background: #0f0f0f;
  text-align: center;
}
.footer-top {
  padding: 60px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-top a[href^="mailto:"] {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--cta);
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.footer-socials a svg {
  width: 34px;
  height: 34px;
  color: #fff;
  transition: opacity .2s ease;
}
.footer-bottom {
  margin-top: -6px;
  padding-bottom: 30px;
  color: #bdbdbd;
  font-size: 14px;
}

/* MOBILE FOOTER */
@media (max-width: 600px) {
  .footer-top {
    padding: 50px 0 24px;
    gap: 18px;
  }
  .footer-socials a svg {
    width: 30px;
    height: 30px;
  }
  .footer-bottom {
    padding-bottom: 20px;
    font-size: 13px;
  }
}
/* ==========================================================================
   10) COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 26px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .7s cubic-bezier(0.23, 1, 0.32, 1), opacity .7s ease;
  z-index: 9999;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  animation: cookieReveal .7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes cookieReveal {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  color: rgba(255,255,255,0.92);
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 12px 20px;
  border-radius: 6px;
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}
.cookie-actions .btn.primary {
  background: var(--cta);
  border: 1px solid var(--cta);
  color: #000;
}
.cookie-actions .btn.outline {
  background: transparent;
  border: 1px solid var(--cta);
  color: #fff;
}
.cookie-actions .btn:hover {
  transform: translateY(-2px);
  opacity: .9;
  box-shadow: 0 0 10px rgba(255,150,50,0.25);
}
@media (max-width: 800px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .cookie-text {
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 100%;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cookie-actions .btn {
    width: 100%;
    min-width: unset;
    padding: 14px 0;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .cookie-banner {
    padding: 22px 14px;
  }
  .cookie-text {
    font-size: 14px;
  }
}

