/* ============================================
   DA RECRUITING - COMPLETE WEBSITE CSS
   Professional, Serious, Modern Style
   ============================================ */

/* ─── CSS Variables ─── */
:root {
  --navy: #0A1628;
  --navy-light: #1B365D;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #B8993F;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --steel: #8A9BB3;
  --steel-light: #A8B8CC;
  --text-body: #1B365D;
  --text-muted: #6B7F99;
  --dark-bg: #0D1B2A;
  --border-gold: rgba(201, 168, 76, 0.25);
  --shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-medium: 0 8px 40px rgba(10, 22, 40, 0.12);
  --shadow-heavy: 0 20px 60px rgba(10, 22, 40, 0.18);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─── */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans { font-family: 'Inter', system-ui, sans-serif; }
.font-mono { font-family: 'JetBrains Mono', 'SF Mono', monospace; }

/* ─── Layout Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ─── */
.nav-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-main.transparent {
  background: transparent;
}
.nav-main.scrolled {
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-icon {
  transform: rotate(-8deg);
}
.nav-logo-icon span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.nav-main.transparent .nav-logo-text { color: var(--white); }
.nav-main.scrolled .nav-logo-text { color: var(--navy); }
.nav-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-main.transparent .nav-logo-sub { color: rgba(255,255,255,0.5); }
.nav-main.scrolled .nav-logo-sub { color: var(--steel); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}
.nav-main.transparent .nav-link { color: rgba(255,255,255,0.85); }
.nav-main.scrolled .nav-link { color: var(--text-body); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover { color: var(--gold) !important; }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: 32px;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.nav-cta::after { display: none; }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-main.transparent .mobile-toggle span { background: var(--white); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  border-top: 1px solid var(--border-gold);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ─── Hero Section (Frankfurt Skyline Parallax) ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../assets/frankfurt-skyline.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.65) 0%,
    rgba(10, 22, 40, 0.4) 40%,
    rgba(10, 22, 40, 0.6) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 32px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Section Styles ─── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}
.section-cream {
  background: var(--cream);
}
.section-white {
  background: var(--white);
}
.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label-dark { color: var(--gold-light); }
.section-label-muted { color: var(--steel); }

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

/* ─── Scale of Justice Visual ─── */
.justice-visual {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.justice-icon {
  position: relative;
  z-index: 2;
}
.justice-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}
.card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold-light);
}
.service-cell {
  background: var(--cream);
  padding: 48px 36px;
  transition: all 0.3s ease;
}
.service-cell:hover {
  background: var(--white);
}
.service-cell-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  stroke: var(--gold);
}
.service-cell h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-cell p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Industry Rows ─── */
.industry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.industry-row:hover .industry-text {
  transform: translateX(8px);
  color: var(--gold);
}
.industry-row:hover .industry-arrow {
  transform: translateX(4px);
  color: var(--gold);
}
.industry-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--navy);
  transition: all 0.3s ease;
}
.industry-arrow {
  color: var(--steel);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* ─── Stats ─── */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--steel);
  margin-top: 8px;
}
.stat-card-dark {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.stat-card-dark:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.stat-card-dark .stat-number { color: var(--gold); }
.stat-card-dark .stat-label { color: rgba(255,255,255,0.6); }

/* ─── Quote Section ─── */
.quote-section {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.5;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: -10px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 32px;
}
.quote-author {
  font-size: 14px;
  color: var(--steel);
}

/* ─── Contact Form ─── */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 15px;
  background: var(--cream);
  color: var(--navy);
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Job Cards ─── */
.job-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.job-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ─── Dropdown ─── */
.dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(10, 41, 66, 0.05);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s ease;
}
.dropdown-toggle:hover { background: rgba(10, 41, 66, 0.08); }
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.dropdown-content.open { max-height: 600px; }

/* ─── Legal Pages ─── */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.legal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 24px 0 12px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.7;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 32px 0;
}
.legal-content .highlight-box {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  margin: 20px 0;
}
.legal-content .highlight-box p { margin-bottom: 0; }
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.7;
}
.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── FAQ Accordion ─── */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
}
.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── Utility Classes ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.max-w-lg { max-width: 520px; }
.max-w-xl { max-width: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: 600px; background-attachment: scroll; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .legal-content { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* iOS parallax fallback */
@supports (-webkit-touch-callout: none) {
  .hero { background-attachment: scroll; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ─── Selection ─── */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--navy);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
/* ==========================================================================
   DA RECRUITING - PROFESSIONAL DSGVO COOKIE CONSENT BANNER (MATCHING DESIGN)
   ========================================================================== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  background-color: #FFFFFF;
  color: #0A1628;
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.2);
  border-radius: 8px;
  padding: 28px;
  z-index: 999999;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.cookie-banner-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
}

#cookie-banner h2 {
  font-family: 'Playfair Display', serif;
  color: #0A1628;
  margin: 0 0 12px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

#cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6B7F99;
  margin: 0 0 20px 0;
}

.cookie-options {
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  padding: 16px 0;
  margin-bottom: 20px;
  max-height: 180px;
  overflow-y: auto;
}

.cookie-option {
  margin-bottom: 14px;
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  cursor: pointer;
  font-weight: 600;
  color: #0A1628;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C9A84C;
  cursor: pointer;
}

.cookie-option p {
  margin: 6px 0 0 30px;
  font-size: 0.8rem;
  color: #6B7F99;
  line-height: 1.4;
}

.cookie-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-links {
  display: flex;
  gap: 16px;
}

.cookie-links a {
  color: #6B7F99;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-links a:hover {
  color: #C9A84C;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.cookie-buttons button {
  flex: 1;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #0A1628;
  color: #FFFFFF;
  border: 1px solid #0A1628 !important;
}

.btn-primary:hover {
  background-color: #C9A84C;
  border-color: #C9A84C !important;
}

.btn-secondary {
  background-color: #F7F5F0;
  color: #0A1628;
  border: 1px solid transparent !important;
}

.btn-secondary:hover {
  background-color: rgba(10, 22, 40, 0.05);
}

@media (max-width: 768px) {
  #cookie-banner {
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 24px;
    box-shadow: 0 -10px 30px rgba(10, 22, 40, 0.15);
  }
  .cookie-buttons {
    flex-direction: column;
  }
}
