:root {
  --brand-primary: #1e293b;       /* Elegant Deep Slate */
  --brand-accent: #f77127;        /* Professional Muted Teal */
  --brand-accent-light: #f0fdfa;  /* Subtle Teal Light Background */
  --text-dark: #334155;           /* Soft charcoal for easy reading */
  --text-light: #64748b;
}

body {
  background-color: #eaeaea;
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* BRAND LOGO DESIGN */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo {
	max-width: 150px;
}

.advertorial-badge {
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  color: var(--text-light);
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
}

.main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 80px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  color: var(--brand-primary);
  font-size: 2.4rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.6rem;
  color: var(--brand-primary);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  padding-left: 15px;
  border-left: 4px solid var(--brand-accent);
  font-weight: 700;
}

p {
  line-height: 1.7;
  font-size: 1.05rem;
}

.vorteil-box {
  background-color: var(--brand-accent-light);
  border: 1px solid rgba(15, 118, 110, 0.15);
  padding: 30px;
  border-radius: 16px;
  margin: 35px 0;
}

.vorteil-liste {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.vorteil-liste li {
  margin-bottom: 16px;
  display: flex;
  font-weight: 500;
  color: var(--brand-primary);
}

.vorteil-liste li:last-child {
  margin-bottom: 0;
}

.vorteil-liste li span {
  margin-right: 15px;
  font-size: 1.2rem;
}

.age-button {
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  color: var(--text-dark);
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 12px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.age-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.12);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.age-button img {
  max-width: 55px;
  margin-bottom: 14px;
}

.age-button span {
  font-weight: 700;
  font-size: 1.15rem;
}

footer {
  background-color: var(--brand-primary);
  color: #f8fafc;
  padding: 60px 0;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

.top-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf2f7;
  -webkit-backdrop-filter: blur(12px);
}

/* COOKIE POPUP COMPONENT DESIGN */
#cookieConsent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px;
  z-index: 1060;
  font-size: 0.9rem;
  color: var(--text-dark);
}

#cookieConsent p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.9rem;
}

#cookieConsent p:first-child {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
}

#cookieConsent a {
  color: var(--brand-accent);
  text-decoration: underline;
}

#cookieConsent a:hover {
  color: var(--brand-primary);
}

.btn-container {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 14px;
}

.cookieButton {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cookieButton.accept {
  background-color: var(--brand-accent);
  color: white;
}

.cookieButton.accept:hover {
  background-color: #115e59;
}

.cookieButton.reject {
  background-color: #f1f5f9;
  color: #475569;
}

.cookieButton.reject:hover {
  background-color: #e2e8f0;
}

.cookie-legal {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cookie-legal a {
  color: var(--text-light) !important;
  text-decoration: none !important;
}

.cookie-legal a:hover {
  text-decoration: underline !important;
}
