/* WissensWerk — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #ed1e25; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #ededed;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-contact a {
  color: #444;
  margin-right: 20px;
  font-size: 13px;
}
.top-bar-contact a:hover { color: #ed1e25; }
.top-bar-contact i { margin-right: 5px; color: #ed1e25; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  position: sticky;
  top: 0;
  z-index: 1012;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: #000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.site-header.scrolled .nav-logo { filter: invert(1); }
.site-header.scrolled .main-nav a { color: #fff; }
.site-header.scrolled .main-nav a:hover { color: #ed1e25 !important; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo svg text { font-family: 'Montserrat', sans-serif; }
.nav-cta {
  background: #000;
  color: #fff !important;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: #ed1e25 !important; color: #fff !important; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: #fff !important; background: #222; }
.main-nav a.active { color: #ed1e25; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}
.site-header.scrolled .hamburger span { background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  background: #111 url('../pics/hero-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
}
.hero-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ed1e25;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: #ed1e25; }
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.btn-primary {
  background: #ed1e25;
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #c01018; color: #fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ed1e25;
  margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
}
section { padding: 80px 0; }
section.bg-light { background: #f8f8f8; }
section.bg-dark { background: #111; color: #fff; }
.section-head { margin-bottom: 50px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ed1e25;
  color: #fff;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
}
.about-img-badge span { display: block; font-size: 32px; font-weight: 900; }
.about-list { margin: 24px 0 32px; }
.about-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #444;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.about-list li:last-child { border-bottom: none; }
.about-list li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ed1e25;
}
.btn-dark {
  background: #000;
  color: #fff;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: #ed1e25; color: #fff; }

/* ============================================================
   COURSES / EXPERT SERVICES
   ============================================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  border: 1px solid #ededed;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.course-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.course-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.course-card-body { padding: 20px; }
.course-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ed1e25;
  margin-bottom: 8px;
}
.course-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.4;
}
.course-card-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }
.course-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.course-meta i { color: #ed1e25; margin-right: 4px; }
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.course-price { font-size: 22px; font-weight: 800; color: #111; }
.course-price span { font-size: 13px; font-weight: 400; color: #888; }
.btn-course {
  background: #000;
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-course:hover { background: #ed1e25; color: #fff; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-title { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: #666; line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.price-card {
  border: 2px solid #ededed;
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.price-card:hover { border-color: #000; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.price-card.featured {
  border-color: #ed1e25;
  box-shadow: 0 8px 32px rgba(237,30,37,0.15);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ed1e25;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
.price-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 12px; }
.price-amount { font-size: 44px; font-weight: 900; color: #111; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-period { font-size: 13px; color: #888; margin-bottom: 24px; }
.price-features { margin-bottom: 28px; text-align: left; }
.price-features li {
  font-size: 14px;
  color: #555;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #ed1e25;
}
.price-features li.disabled { color: #bbb; }
.price-features li.disabled::before { color: #ddd; content: '\f00d'; }
.btn-price {
  display: block;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  background: #111;
  color: #fff;
  transition: background 0.2s;
}
.btn-price:hover { background: #ed1e25; color: #fff; }
.price-card.featured .btn-price { background: #ed1e25; }
.price-card.featured .btn-price:hover { background: #c01018; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 6px;
  padding: 28px;
}
.testimonial-stars { color: #f5a623; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: #ededed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #666;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: #111; }
.testimonial-role { font-size: 12px; color: #888; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ededed; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ed1e25;
  font-size: 14px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA / CONTACT FORM SECTION
   ============================================================ */
.cta-section {
  background: #111;
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-text .section-title { color: #fff; }
.cta-text .section-desc { color: rgba(255,255,255,0.7); }
.contact-form { background: #fff; padding: 36px; border-radius: 6px; }
.form-title { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  background: #ed1e25;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.form-submit:hover { background: #c01018; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid #ededed;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ededed;
  border-radius: 50%;
  font-size: 14px;
  color: #444;
  margin-right: 6px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: #000; color: #fff; }
.footer-widget h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 16px;
}
.footer-widget ul li { margin-bottom: 8px; }
.footer-widget ul a { font-size: 14px; color: #666; transition: color 0.2s; }
.footer-widget ul a:hover { color: #ed1e25; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
  align-items: flex-start;
}
.footer-contact-item i { color: #ed1e25; flex-shrink: 0; margin-top: 2px; min-width: 16px; }
.footer-copyright {
  border-top: 1px solid #ededed;
  padding: 18px 0 22px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* ============================================================
   COOKIES GDPR
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
#cookie-banner.active { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
#cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.85); max-width: 780px; margin: 0; }
#cookie-banner a { color: #ed1e25; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept {
  background: #ed1e25;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
#cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: #111;
  color: #fff;
  padding: 60px 0;
}
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: #888; margin-bottom: 12px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #ed1e25; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content { padding: 60px 0; }
.page-content h2 { font-size: 26px; font-weight: 700; color: #111; margin: 32px 0 14px; }
.page-content h3 { font-size: 20px; font-weight: 700; color: #111; margin: 24px 0 10px; }
.page-content p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px 20px; list-style: disc; }
.page-content ul li { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info-card {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 6px;
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; color: #111; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text strong { font-size: 14px; color: #111; display: block; margin-bottom: 3px; }
.contact-detail-text span { font-size: 14px; color: #555; }
.map-placeholder {
  background: #ededed;
  border-radius: 4px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 14px;
  color: #888;
}
.contact-form-wrap { background: #f8f8f8; padding: 36px; border-radius: 6px; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
#mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  padding: 20px;
}
#mobile-nav.open { right: 0; }
#mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  display: none;
}
#mobile-nav-overlay.open { display: block; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #ededed; }
.mobile-nav-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #333; }
#mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
#mobile-nav ul a { display: block; padding: 12px 8px; font-size: 15px; font-weight: 600; color: #333; border-bottom: 1px solid #f5f5f5; }
#mobile-nav ul a:hover { color: #ed1e25; }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-box { text-align: center; padding: 80px 20px; }
.success-icon { font-size: 60px; color: #4CAF50; margin-bottom: 20px; }
.success-box h2 { font-size: 28px; font-weight: 700; margin-bottom: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1043px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hero-title { font-size: 34px; }
  .hero { min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
  .footer-copyright { text-align: center; }
  .header-inner { padding: 12px 0; }
}

@media (max-width: 600px) {
  .courses-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .section-title { font-size: 28px; }
  #cookie-banner.active { flex-direction: column; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}
