/* styles.css */

@font-face {
  font-family: 'Inter';
  src: url('Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'InterLogo';
  src: url('Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'InterLogo';
  src: url('Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'InterLogo';
  src: url('Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'InterLogo';
  src: url('Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* prev background: #f0f0ee */
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:'Inter', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color:#000000;
  background:#ffffff;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 40px 0px;
}

.container--narrow {
  max-width: 960px;
}

.logo-wrap {
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-name {
  font-family: 'InterLogo', sans-serif;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-kofahl {
  color: #1a3a5c;
  font-weight: 800;
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #1a3a5c;
  margin: 0 6px 0 2px;
  vertical-align: baseline;
  flex-shrink: 0;
}

.logo-law {
  color: #C7CFDA;
  font-weight: 700;
}

.logo-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  padding-left: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.logo {
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Fixed top bar */
.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Language toggle */
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 1px solid rgba(0,0,0,0.15);
  padding-left: 22px;
}

.lang a {
  text-decoration: none;
  color: #111;
  opacity: 0.55;
  padding: 8px 10px;
  border-radius: 2px;
}

.lang a.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.menu a:hover {
  opacity: 0.6;
}

/* CTA */
.menu a.kontakt {
  background: #111;
  color: #fff;
  padding: 11px 17px;
  border-radius: 2px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 700;
}

.menu a.kontakt:hover {
  opacity: 0.9;
}

/* Nav dropdown */
.menu-item--dropdown {
  position: relative;
}
.menu-item--dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}
.menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  min-width: 200px;
  z-index: 200;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 12px 0 4px;
}
.menu-item--dropdown:hover .menu-dropdown {
  display: flex;
}
.menu-dropdown a {
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.15s;
}
.menu-dropdown a:hover {
  background: #f5f5f5;
  opacity: 1;
}

/* Divider */
.full-divider{
  height:0.5px;
  background:#7d7d7d;
}

/* =========================
   BELOW AREA
   ========================= */

/* prev background:
  radial-gradient(820px 520px at 88% 6%, rgba(200,200,200,0.6), rgba(240,240,238,0) 45%),
  radial-gradient(1000px 700px at 45% 35%, rgba(255,255,255,0.95), rgba(240,240,238,0.88) 60%),
  linear-gradient(180deg, #f0f0ee 0%, #f0f0ee 100%); */
.below {
  width: 100%;
  padding: 0 0 56px;
  background: #fff;
}

.below-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 80px 0;
}

/* =========================
   HERO
   ========================= */

.hero-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0 0 20px 0;
}

.hero {
  flex: 0 0 32%;
  aspect-ratio: 2 / 3;
  background-image: url("hero.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 20%;
  border-radius: 2px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 0 20px;
  max-width: 480px;
}

.hero-copy .kicker {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 36px;
}

.hero-copy h1 {
  margin: 0 0 18px 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding-top: 20px;
}

.section h1,
.section h2 {
  margin: 0 0 14px 0;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-text + h1,
.about-text + h2 {
  margin-top: 24px;
}

.about-text {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.section + .full-divider {
  margin-top: 18px;
}

/* =========================
   FOCUS BOXES
   ========================= */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.below-inner--narrow {
  max-width: 960px;
}

.focus-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.focus-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}


.focus {
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 20px 20px;
  min-height: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.focus:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.focus h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
}

.focus p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
}

.focus ul {
  margin: 0 0 8px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.9;
}

.focus-cta {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================
   FOOTER
   ========================= */

.footer-wrap {
  width: 100%;
  background:#000;
  margin-top: 0;
  padding: 28px 0;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 32px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: #fff;
}

.footer-copy {
  margin-left: auto;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* =========================
   HAMBURGER
   ========================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 1000px) {
  .container {
    padding: 8px 22px 0px;
  }

  .form-cols{
    flex-direction:column;
    gap:0;
    margin-bottom:0;
  }

  .form-cols > .form-row{
    margin-bottom:10px;
  }

  .below-inner {
    padding: 22px 16px 0;
  }

  /* — Hamburger nav — */
  .header {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 0;
    position: relative;
  }

  .logo-wrap {
    flex: 1;
    order: 1;
    min-width: 0;
  }

  .logo-name {
    font-size: 32px;
    white-space: nowrap;
  }

  .logo-title {
    font-size: 10px;
  }

  .logo-kofahl {
    font-weight: 900;
  }

  .logo-law {
    font-weight: 800;
  }

  .hamburger {
    display: flex;
    order: 3;
    margin-left: 10px;
  }

  /* header-right: hidden when closed */
  .header-right {
    order: 2;
    display: none;
  }

  .menu {
    display: none;
  }

  .lang {
    border-left: none;
    padding-left: 0;
    font-size: 12px;
    flex-shrink: 0;
  }

  /* Nav open: floating panel, overlays content */
  .header.nav-open .header-right {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    width: 155px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 2px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 12px 20px 16px;
    gap: 0;
    z-index: 999;
  }

  .header.nav-open .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    order: 2;
  }

  .header.nav-open .menu a {
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: block;
    letter-spacing: 0.04em;
  }

  .header.nav-open .menu a.kontakt {
    margin-top: 14px;
    display: inline-flex;
    width: auto;
    padding: 10px 16px;
    border-bottom: none;
  }

  .header.nav-open .lang {
    order: 3;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 14px;
    margin-top: 4px;
    justify-content: center;
  }

  /* Dropdown inside open nav */
  .menu-item--dropdown:hover .menu-dropdown {
    display: none;
  }

  .menu-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 4px 14px;
    background: transparent;
    min-width: 0;
    margin: 0;
    padding: 4px 0 4px 14px;
  }

  .header.nav-open .menu-dropdown a {
    color: rgba(0,0,0,0.4);
  }

  .menu-dropdown a {
    padding: 9px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    white-space: normal;
    line-height: 1.4;
  }

  .menu-item--dropdown.menu-item--open .menu-dropdown {
    display: flex;
  }

  .content-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }

  .section {
    padding-top: 22px;
  }

  .section + .full-divider {
    margin-top: 22px;
  }

  .section h1,
  .section h2 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .about-text {
    margin-bottom: 12px;
  }

  .legal-h3 {
    margin-top: 22px;
    margin-bottom: 12px;
  }

  .hero-row {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
  }

  .hero-copy {
    order: -1;
  }

  .hero {
    flex: none;
    width: 100%;
    aspect-ratio: 2 / 3;
  }

  .hero-copy {
    padding: 0;
    max-width: none;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .focus {
    padding: 14px 18px;
    min-height: 140px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .about-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #contact > div,
  #kontakt > div {
    flex-direction: column;
  }

  #contact > div > div:last-child,
  #kontakt > div > div:last-child {
    flex: none;
    width: 100%;
    margin-top: 24px;
  }
}

/* Contact form */
.contact-form{
  max-width:720px;
  margin-top:16px;
}

.form-success{
  max-width:720px;
  margin-top:24px;
  font-size:16px;
  line-height:1.55;
}

.form-error{
  max-width:720px;
  margin-bottom:16px;
  font-size:14px;
  color:#c00;
}

.contact-row {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.contact-col-form {
  flex: 1 1 0;
  min-width: 0;
}
.contact-col-side {
  flex: 0 0 200px;
  padding-top: 4px;
}
.contact-col-side h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  opacity: 0.5;
}
.membership-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.membership-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background: #ebebeb;
  padding: 5px 10px;
  border-radius: 2px;
  transition: background 0.15s;
}
.membership-link:hover {
  background: #d0d0d0;
}

.about-memberships {
  margin-top: 14px;
}
.about-memberships-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 8px;
}
.about-memberships-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  align-items: center;
  gap: 14px 20px;
}
.about-memberships-links a {
  font-size: 12px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}
.about-memberships-links a:hover {
  color: #000;
}

.memberships-strip {
  padding: 24px 0 8px;
  border-top: 1px solid #e0e0e0;
  margin-top: 24px;
}
.memberships-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 12px;
}
.memberships-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.membership-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.15s;
}
.membership-logo-link:hover {
  color: #000;
}
.membership-logo-link:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 11px;
  background: #ccc;
  margin: 0 12px;
}

.form-cols{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.form-cols > .form-row{
  flex:1;
  margin-bottom:0;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}

.form-row label{
  font-weight:700;
  font-size:13px;
  letter-spacing:0;
  opacity:0.6;
}

.form-row label .optional{
  font-weight:300;
  font-size:11px;
  letter-spacing:0.04em;
  text-transform:none;
  opacity:0.6;
  margin-left:4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family:inherit;
  font-size:13px;
  padding:7px 9px;
  border-radius:2px;
  border:1px solid rgba(0,0,0,0.2);
  background:#f5f5f5;
  color:#111;
  outline:none;
  width:100%;
  box-sizing:border-box;
}

.contact-form textarea{
  resize:vertical;
  min-height:110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(0,0,0,0.30);
}

.form-row--check{
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
}

.form-row--check input[type="checkbox"]{
  width:auto;
  margin-top:3px;
  flex-shrink:0;
  accent-color:#111;
}

.form-row--check label{
  font-weight:300;
  font-size:14px;
  letter-spacing:0;
  text-transform:none;
  opacity:0.85;
  line-height:1.5;
  cursor:pointer;
}

.form-row--check label a{
  color:#111;
  text-decoration:underline;
}

.form-privacy-text{
  font-size:12px;
  line-height:1.6;
  font-weight:300;
  color:#555;
  margin-bottom:16px;
}

.form-privacy-text a{
  color:#111;
  text-decoration:underline;
}

.form-response-note{
  font-size:14px;
  line-height:1.6;
  font-weight:500;
  color:#333;
  margin-bottom:16px;
}

.btn{
  background:#111;
  color:#fff;
  padding:12px 18px;
  border-radius:2px;
  border:1px solid rgba(0,0,0,0.12);
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:12px;
  cursor:pointer;
}

.btn:hover{
  opacity:0.9;
}

:target{
  scroll-margin-top:120px;
}

/* Legal pages (Datenschutz / Impressum) */

.legal-h3{
  margin:28px 0 10px 0;
  font-size:16px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-weight:700;

}

.legal-h4{
  margin:22px 0 10px 0;
  font-size:14px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:700;
  opacity:0.8;
}

.legal-p{
  max-width:720px;
  font-size:14px;
  line-height:1.55;
  opacity:0.92;
  margin:0 0 10px 0;
  overflow-wrap: break-word;
}

.legal-ul{
  max-width:720px;
  margin:0 0 10px 24px;
  padding:0;
  font-size:14px;
}

.legal-ul li{
  margin:0 0 3px 0;
  line-height:1.55;
  opacity:0.92;
}

/* =========================
   FAQ SECTION GROUPS
   ========================= */

.faq-section {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-section-title {
  list-style: none;
  background: #d0d0d0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-section-title::-webkit-details-marker {
  display: none;
}

.faq-section-title::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-section[open] .faq-section-title::after {
  transform: rotate(45deg);
}

.faq-section-body {
  background: #ebebeb;
  padding: 0 18px;
}

.faq-section-body .faq-item:last-child {
  border-bottom: none;
}

/* =========================
   FAQ ACCORDION
   ========================= */

.faq {
  max-width: 720px;
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 12px;
  color: #000;
}

.faq-answer .legal-p {
  margin-bottom: 8px;
}

.faq-answer .legal-ul {
  margin-bottom: 8px;
}

/* =========================
   BREADCRUMB
   ========================= */

.breadcrumb {
  font-size: 13px;
  opacity: 0.55;
  letter-spacing: 0.01em;
  padding-top: 8px;
  margin-bottom: -16px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 7px;
}

/* =========================
   RELATED LINKS
   ========================= */

.related-section {
  padding: 40px 0;
}

.related-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  margin-bottom: 14px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-link {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: background 0.15s ease;
}

.related-link:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* =========================
   COOKIE CONSENT
   ========================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02em;
  z-index: 9999;
}

#cookie-banner a {
  color: #fff;
  opacity: 0.7;
}

#cookie-banner a:hover {
  opacity: 1;
}

#cookie-btns {
  display: flex;
  gap: 8px;
  margin-left: auto;
  white-space: nowrap;
}

#cookie-accept, #cookie-decline {
  border: none;
  padding: 7px 16px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

#cookie-accept {
  background: #fff;
  color: #111;
}

#cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

#cookie-accept:hover, #cookie-decline:hover {
  opacity: 0.8;
}

/* =========================
   CONTENT CARDS (v3 style)
   ========================= */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.content-card {
  background: #f4f4f4;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.content-card-head {
  background: #e4e4e4;
  padding: 10px 18px;
}

.content-card-head .legal-h3 {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.content-card-body {
  padding: 14px 18px 12px;
  flex: 1;
}

.content-card-body .legal-p,
.content-card-body .legal-ul {
  max-width: none;
}

.content-card-body .legal-p:first-child {
  margin-top: 0;
}

.content-card-body .legal-p:last-child,
.content-card-body .legal-ul:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .content-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }
}

/* =========================
   ABOUT COLUMNS (main page)
   ========================= */

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-col h2 {
  margin-top: 0;
}

.about-col .about-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .about-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}