@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.2;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

a:not([class]):hover {
  text-decoration-line: underline;
}

a {
  text-decoration: none;
}

.wrap {
  word-wrap: break-word;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

:target {
  scroll-margin-block: 5ex;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* =================== Font & Base Styles ============ */

body {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #ffffff;
  --dark-text: #1a1a1a;
  --light-text: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.frozen-cyan-sheen {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #ffffff;
  --dark-text: #1a1a1a;
  --light-text: #ffffff;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.neon-orange-shade {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.twilight-cyan-mist {
  position: relative;
  flex: 1 0 auto;
}

.icy-cyan-shine {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

/* ================== HEADER START ================== */

.solar-red-light {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--light-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.sienna-brown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 30px;
}

.icy-black-sheen {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cornflower {
  display: flex;
  align-items: center;
}

.chocolate-brown {
  display: flex;
  gap: 40px;
  align-items: center;
}

.sunset-yellow-shade {
  position: relative;
}

.icy-pink-aura {
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
}

.icy-pink-aura::before {
  display: none;
}

.icy-pink-aura:hover {
  color: var(--secondary-color);
}

.volcano-cyan-wave {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.volcano-cyan-wave span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  display: block;
}

.volcano-cyan-wave.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.volcano-cyan-wave.active span:nth-child(2) {
  opacity: 0;
}

.volcano-cyan-wave.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.volcano-cyan-wave.active span:nth-child(4) {
  display: none;
}

@media (max-width: 1100px) {
  .solar-red-light {
    padding: 0;
  }

  .sienna-brown {
    padding: 15px 0;
  }

  .volcano-cyan-wave {
    display: flex;
  }

  .cornflower {
    display: none;
  }
}

@media (max-width: 568px) {
  .sienna-brown {
    padding: 12px 0;
  }

  .icy-black-sheen {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  #mobileMenu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--light-bg);
    padding: 60px 20px;
    display: block;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  #mobileMenu.active {
    top: 70px;
  }

  .chocolate-brown {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .icy-pink-aura {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
  }

  .icy-pink-aura::before {
    display: none;
  }

  .icy-pink-aura:hover {
    color: var(--secondary-color);
  }
}

@media (max-width: 568px) {
  #mobileMenu.active {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

.lock-scroll {
  overflow: hidden;
}

/* ================== HEADER END ================== */

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

.lunar-blue-tone {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.lunar-blue-tone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.rust-red {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.marble-yellow-aura {
  color: var(--light-text);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.brick-red {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 700px;
}

@media (max-width: 768px) {
  .lunar-blue-tone {
    padding: 60px 0;
  }

  .rust-red {
    gap: 25px;
    padding: 40px 0;
  }

  .marble-yellow-aura {
    font-size: 42px;
  }

  .brick-red {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .lunar-blue-tone {
    padding: 40px 0;
  }

  .rust-red {
    gap: 20px;
    padding: 30px 0;
  }

  .marble-yellow-aura {
    font-size: 32px;
  }

  .brick-red {
    font-size: 16px;
  }
}

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

/* ================== CARDS START ================== */

.gilded-orange-shine {
  background: var(--light-bg);
  padding: 80px 0;
}

.orchid-purple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 0;
}

.arctic-orange-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
}

.arctic-orange-light:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.sunset-green-aura {
  grid-template-columns: 1fr 1fr;
}

.arctic-red-shade {
  width: 100%;
  border-radius: 16px;
  background: var(--gradient-primary);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.arctic-orange-light:hover .arctic-red-shade {
  transform: scale(1.05);
}

.arctic-red-shade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arctic-blue-tone {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stormy-green-shine {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.prism-white-glow {
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .gilded-orange-shine {
    padding: 60px 0;
  }

  .orchid-purple {
    gap: 40px;
  }

  .arctic-orange-light {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .sunset-green-aura {
    grid-template-columns: 1fr;
  }

  .arctic-blue-tone {
    gap: 15px;
  }

  .stormy-green-shine {
    font-size: 28px;
    text-align: center;
  }

  .prism-white-glow {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 568px) {
  .gilded-orange-shine {
    padding: 40px 0;
  }

  .orchid-purple {
    gap: 30px;
  }

  .arctic-orange-light {
    padding: 20px;
    gap: 20px;
  }

  .stormy-green-shine {
    font-size: 24px;
  }

  .prism-white-glow {
    font-size: 15px;
  }
}

/* ================== CARDS END ================== */

/* ================== CTA START ================== */

.twilight-green-shade {
  background: var(--gradient-secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.twilight-green-shade::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: shimmer 20s linear infinite;
}

.marble-blue-wave {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 1;
}

.sunset-pink-flare {
  color: var(--light-text);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dusty-gray-glow {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .twilight-green-shade {
    padding: 60px 0;
  }

  .marble-blue-wave {
    gap: 20px;
  }

  .sunset-pink-flare {
    font-size: 36px;
  }

  .dusty-gray-glow {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .twilight-green-shade {
    padding: 40px 0;
  }

  .sunset-pink-flare {
    font-size: 28px;
  }

  .dusty-gray-glow {
    font-size: 16px;
  }
}

/* ================== CTA END ================== */

/* ================== FORM START ================== */

.arctic-orange-shine {
  background: var(--light-bg);
  padding: 80px 0;
}

.twilight-pink-glow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.bubblegum-pink {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.sunset-yellow-shine {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.slate-gray {
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
}

.shadow-orange-shade {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.volcano-red-mist {
  width: 100%;
  padding: 16px 24px;
  outline: none;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--light-bg);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--dark-text);
}

.volcano-red-mist:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.jade-green {
  width: 100%;
  padding: 16px 24px;
  outline: none;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--light-bg);
  resize: none;
  height: 180px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--dark-text);
}

.jade-green:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.neon-black-tone {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  outline: none;
  border: none;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--light-text);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.neon-black-tone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.neon-black-tone:active {
  transform: translateY(0);
}

.impressum-text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .arctic-orange-shine {
    padding: 60px 0;
  }

  .twilight-pink-glow {
    gap: 30px;
  }

  .bubblegum-pink {
    gap: 12px;
  }

  .sunset-yellow-shine {
    font-size: 32px;
  }

  .slate-gray {
    font-size: 16px;
  }

  .shadow-orange-shade {
    padding: 30px 20px;
  }

  .volcano-red-mist,
  .jade-green {
    padding: 14px 20px;
    font-size: 15px;
  }

  .jade-green {
    height: 150px;
  }

  .neon-black-tone {
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .arctic-orange-shine {
    padding: 40px 0;
  }

  .sunset-yellow-shine {
    font-size: 26px;
  }

  .slate-gray {
    font-size: 15px;
  }

  .shadow-orange-shade {
    padding: 25px 15px;
  }
}

/* ================== FORM END ================== */

/* ================== CONTACTS START ================== */

.obsidian-green-sheen {
  background: var(--light-bg);
  padding: 80px 0;
}

.solar-purple-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 0;
}

.neon-white-wave {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gilded-yellow-light {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.velvet-red-flare {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.velvet-red-flare p {
  margin: 0;
}

.velvet-red-flare a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.velvet-red-flare a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.stormy-red-mist {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  aspect-ratio: 1/1;
}

.stormy-red-mist iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .obsidian-green-sheen {
    padding: 60px 0;
  }

  .solar-purple-light {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .neon-white-wave {
    gap: 20px;
  }

  .gilded-yellow-light {
    font-size: 32px;
  }

  .velvet-red-flare {
    font-size: 16px;
  }

  .stormy-red-mist {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 568px) {
  .obsidian-green-sheen {
    padding: 40px 0;
  }

  .gilded-yellow-light {
    font-size: 28px;
  }

  .velvet-red-flare {
    font-size: 15px;
  }
}

/* ================== CONTACTS END ================== */

/* ================== POLICY START ================== */

.volcano-purple-flare {
  background: var(--light-bg);
  padding: 80px 0;
}

.sky-grey {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.velvet-pink-glow {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--light-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.velvet-pink-glow:hover {
  box-shadow: var(--shadow-hover);
}

.neon-black-shade {
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.gold-leaf {
  color: var(--dark-text);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.gold-leaf p {
  margin-bottom: 15px;
}

.gold-leaf ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  gap: 12px;
  margin: 20px 0;
}

.gold-leaf ul li {
  position: relative;
  padding-left: 25px;
}

.gold-leaf ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .volcano-purple-flare {
    padding: 60px 0;
  }

  .sky-grey {
    gap: 35px;
  }

  .velvet-pink-glow {
    padding: 30px 20px;
    gap: 20px;
  }

  .neon-black-shade {
    font-size: 28px;
  }

  .gold-leaf {
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .volcano-purple-flare {
    padding: 40px 0;
  }

  .sky-grey {
    gap: 25px;
  }

  .velvet-pink-glow {
    padding: 25px 15px;
  }

  .neon-black-shade {
    font-size: 24px;
  }

  .gold-leaf {
    font-size: 15px;
  }
}

/* ================== POLICY END ================== */

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

.sunset-yellow-flare {
  flex-shrink: 0;
  background: var(--primary-color);
  border-top: 3px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.sunset-yellow-flare::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.olive {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 0;
}

.frozen-cyan-shine {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lightcoral-red {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.marble-red-wave {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}

.gilded-green-flare {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.gilded-green-flare:hover {
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .olive {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 40px 0;
  }

  .frozen-cyan-shine {
    align-items: center;
  }

  .lightcoral-red {
    font-size: 15px;
  }

  .marble-red-wave {
    flex-direction: column;
    gap: 15px;
  }

  .gilded-green-flare {
    font-size: 15px;
  }
}

@media (max-width: 568px) {
  .olive {
    padding: 30px 0;
    gap: 20px;
  }

  .lightcoral-red {
    font-size: 14px;
  }

  .gilded-green-flare {
    font-size: 14px;
  }
}

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

/* ================== COOKIES START ================== */

#hbgBDAgqmW-cookie {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 600px;
  padding: 25px 30px;
  background: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 999999;
  font-size: 15px;
  color: var(--dark-text);
  border: 2px solid var(--border-color);
  animation: fadeInUp 0.5s ease-out;
}

#hbgBDAgqmW-cookie.show {
  display: block;
}

#hbgBDAgqmW-cookie div {
  display: block;
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

#hbgBDAgqmW-cookie div a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: underline;
}

#hbgBDAgqmW-cookie button {
  width: 100%;
  padding: 14px 30px;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: var(--light-text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#hbgBDAgqmW-cookie button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 568px) {
  #hbgBDAgqmW-cookie {
    bottom: 15px;
    left: 20px;
    right: 20px;
    width: auto;
    transform: none;
    padding: 20px;
    font-size: 14px;
  }
}

/* ================== COOKIES END ================== */