/* InvestigativAkademie Stuttgart — tall-wood-444.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --bg-dark: #000000;
  --bg-section: #202020;
  --bg-darker: #161616;
  --gold: #c57c15;
  --gold-light: #E69420;
  --gold-alt: #b06f22;
  --gold-footer: #a96d30;
  --text-body: #545454;
  --text-light: #d8d8d8;
  --white: #ffffff;
  --border-subtle: rgba(84,84,84,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(30px, 5vw, 54px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); }
.section-gray { background: var(--bg-section); }
.section-darker { background: var(--bg-darker); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { margin-bottom: 15px; }
.section-title p { max-width: 650px; margin: 0 auto; font-size: 17px; }
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 20px;
}

/* ==================== HEADER / NAV ==================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #202020;
  transition: background .3s, padding .3s;
  padding: 20px 0;
}
#site-header.sticky {
  background: #212121;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
}
.site-logo svg { flex-shrink: 0; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.main-nav ul { list-style: none; display: flex; gap: 30px; }
.main-nav ul li a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color .25s;
  text-shadow: 1px 1px 2px rgba(0,0,0,.9);
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--gold); }
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold-light);
  color: #000 !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  transition: background .25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #000 !important; }
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold-light);
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../visuals/hero-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12,12,12,.82) 0%, rgba(12,12,12,.35) 50%, rgba(12,12,12,.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 750px;
}
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,124,21,.4);
  padding: 6px 16px;
  margin-bottom: 25px;
}
.hero-content h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px #000, 0 0 40px rgba(0,0,0,.95);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  text-shadow: 1px 1px 4px rgba(0,0,0,.8);
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold-light);
  color: #000;
  border-color: var(--gold-light);
}
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==================== FEATURES STRIP ==================== */
.features-strip { background: var(--gold); padding: 22px 0; }
.features-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-item i { font-size: 18px; }

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 120px; height: 120px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 1;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 120px; height: 120px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 1;
}
.about-text h2 { margin-bottom: 15px; }
.about-text p { font-size: 16px; line-height: 1.75; }
.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; min-width: 80px; }
.stat-item strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }

/* ==================== COURSES / PRICING ==================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}
.course-card {
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
  padding: 35px 30px;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.course-card:hover {
  border-color: var(--gold-alt);
  transform: translateY(-4px);
}
.course-card.featured {
  border-color: var(--gold);
  background: #1e1a12;
}
.course-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold-light);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
}
.course-icon {
  width: 50px; height: 50px;
  background: rgba(197,124,21,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 22px;
}
.course-card h3 { font-size: 20px; margin-bottom: 10px; }
.course-card p { font-size: 14px; color: rgba(216,216,216,.7); margin-bottom: 20px; }
.course-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
  line-height: 1;
}
.course-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.course-duration {
  font-size: 13px;
  color: rgba(216,216,216,.5);
  margin-bottom: 20px;
}
.course-features { list-style: none; margin-bottom: 25px; }
.course-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.course-features li i { color: var(--gold); font-size: 12px; }

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.step-item { text-align: center; padding: 30px 20px; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-item h4 { margin-bottom: 10px; font-size: 17px; }
.step-item p { font-size: 14px; color: rgba(216,216,216,.65); }

/* ==================== IMAGE CARDS ==================== */
.img-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.img-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.img-card:hover img { transform: scale(1.07); }
.img-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.img-card:hover .img-card-overlay { background: rgba(197,124,21,.25); }
.img-card-label {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,.8);
}

/* ==================== TESTIMONIALS ==================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
  padding: 30px;
}
.review-stars { color: var(--gold-light); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197,124,21,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-author-info strong { display: block; color: var(--white); font-size: 14px; }
.review-author-info span { font-size: 13px; color: rgba(216,216,216,.5); }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background-image: url('../visuals/courses-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { margin-bottom: 15px; }
.cta-banner p { font-size: 18px; max-width: 600px; margin: 0 auto 35px; }

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 25px; }
.contact-detail {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(197,124,21,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.contact-detail-text span { font-size: 14px; color: rgba(216,216,216,.7); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(84,84,84,.3);
  color: var(--white);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ==================== FOOTER ==================== */
#site-footer {
  background: var(--bg-darker);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(84,84,84,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-about .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-about p { font-size: 14px; color: rgba(216,216,216,.6); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(197,124,21,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: background .25s, color .25s;
}
.footer-social a:hover { background: var(--gold-light); color: #000; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197,124,21,.3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(216,216,216,.6); font-size: 14px; transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.copyright { font-size: 13px; color: var(--gold-footer); }

/* ==================== COOKIE BANNER ==================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  border-top: 2px solid var(--gold);
  z-index: 9999;
  padding: 20px 0;
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: var(--text-light); flex: 1; min-width: 250px; }
.cookie-text a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  font-family: inherit;
}
.btn-cookie-accept {
  background: var(--gold-light);
  color: #000;
  border-color: var(--gold-light);
}
.btn-cookie-accept:hover { background: var(--gold); border-color: var(--gold); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(84,84,84,.4);
}
.btn-cookie-decline:hover { border-color: var(--text-light); color: var(--white); }

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background-image: url('../visuals/courses-bg.webp');
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { text-transform: uppercase; margin-bottom: 10px; }
.page-hero p { font-size: 17px; max-width: 550px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(216,216,216,.5);
  margin-bottom: 15px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(216,216,216,.4); }

/* ==================== ABOUT PAGE ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.team-card {
  background: #1a1a1a;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-info { padding: 20px; }
.team-card-info h4 { margin-bottom: 4px; font-size: 17px; }
.team-card-info span { font-size: 13px; color: var(--gold); display: block; margin-bottom: 10px; }
.team-card-info p { font-size: 14px; color: rgba(216,216,216,.65); }

/* ==================== FAQ ==================== */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-family: inherit;
}
.faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.faq-question i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 0 22px;
  font-size: 15px;
  color: rgba(216,216,216,.75);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ==================== PRIVACY / LEGAL PAGES ==================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 26px; margin: 40px 0 15px; color: var(--white); }
.legal-content h3 { font-size: 19px; margin: 30px 0 12px; color: var(--text-light); }
.legal-content p { font-size: 15px; color: rgba(216,216,216,.75); line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1rem; }
.legal-content ul li { color: rgba(216,216,216,.75); font-size: 15px; margin-bottom: 6px; }

/* ==================== REVIEWS PAGE ==================== */
.reviews-hero-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 0;
}
.reviews-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.reviews-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

/* ==================== CONTACT PAGE ==================== */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  color: rgba(216,216,216,.4);
  flex-direction: column;
  gap: 10px;
}
.map-placeholder i { font-size: 36px; color: var(--gold); }

/* ==================== UTILITY ==================== */
.text-gold { color: var(--gold) !important; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .img-cards-grid { grid-template-columns: 1fr 1fr; }
  .img-cards-grid .img-card:last-child:nth-child(odd) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: #1a1a1a; flex-direction: column; z-index: 2000; padding: 80px 30px 40px; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--border-subtle); }
  .main-nav ul li a { display: block; padding: 14px 0; font-size: 15px; }
  .burger { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1500; }
  .nav-overlay.show { display: block; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .img-cards-grid { grid-template-columns: 1fr; }
  .img-cards-grid .img-card:last-child:nth-child(odd) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .features-strip .container { justify-content: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 260px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { justify-content: center; }
  .courses-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; }
  .cookie-btns { width: 100%; flex-direction: column; }
  .cookie-btns button { width: 100%; }
}
