:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --gold: #d4af37;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --bg-dark: #0f0f1a;
  --bg-card: #1e1e32;
  --white: #ffffff;
  --error: #ef4444;
  --success: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--accent);
}

.ad-disclosure {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 1px solid var(--accent);
}

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.main-nav a:hover {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(139, 92, 246, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  transform: translateX(-20px);
}

.hero-visual {
  flex: 0 0 380px;
  position: relative;
  transform: translateY(40px) rotate(3deg);
}

.hero-visual-inner {
  background: linear-gradient(145deg, var(--accent), var(--secondary));
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f5d76e 100%);
  color: var(--primary);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
  color: var(--primary);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--primary);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary) 100%);
}

.section-accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-dark) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Asymmetric Layout */
.asymmetric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.asymmetric-large {
  flex: 2;
  min-width: 300px;
}

.asymmetric-small {
  flex: 1;
  min-width: 280px;
  transform: translateY(60px);
}

.asymmetric-offset {
  transform: translateX(-30px);
}

/* Cards */
.card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
  border-color: var(--accent);
}

.card-image {
  height: 220px;
  background-color: var(--secondary);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1 1 340px;
  max-width: 100%;
}

.service-card:nth-child(2) {
  transform: translateY(40px);
}

.service-card:nth-child(4) {
  transform: translateY(-20px);
}

.service-card:nth-child(5) {
  transform: translateY(30px);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* Features */
.features-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.features-image {
  flex: 1;
  min-width: 300px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--secondary);
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.features-list {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-light);
}

.feature-content h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 320px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  position: relative;
}

.testimonial-card:nth-child(2) {
  transform: translateY(-30px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.3;
}

.testimonial-text {
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Forms */
.form-section {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--primary);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}

.form-select option {
  background: var(--primary);
  color: var(--text);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-success {
  color: var(--success);
  font-size: 0.9rem;
  margin-top: 16px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  display: none;
}

/* About Section */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--secondary);
  transform: rotate(2deg);
}

.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 16px;
  transform: rotate(-3deg);
}

.about-image-overlay h4 {
  font-size: 2.5rem;
  font-weight: 800;
}

.about-image-overlay span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Contact Section */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-form {
  flex: 1.5;
  min-width: 320px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-light);
}

.contact-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--primary);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col:first-child {
  flex: 1.5;
  min-width: 280px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Disclaimer */
.disclaimer {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}

.disclaimer h5 {
  color: var(--accent-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.disclaimer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 24px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-light);
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.95rem;
}

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

.cookie-accept:hover {
  background: var(--accent-light);
}

.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-reject:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.thanks-text {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.thanks-service {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.thanks-service h4 {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.thanks-service p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary) 0%, var(--bg-dark) 100%);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Legal Pages */
.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 48px 0 20px;
}

.legal-content h3 {
  color: var(--accent-light);
  font-size: 1.2rem;
  margin: 32px 0 16px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--text-muted);
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.mt-4 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-asymmetric {
    flex-direction: column;
    gap: 40px;
  }

  .hero-visual {
    transform: none;
    flex: 1;
    width: 100%;
    max-width: 400px;
  }

  .hero-text {
    transform: none;
    text-align: center;
  }

  .asymmetric-small {
    transform: none;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    transform: none;
  }

  .testimonial-card:nth-child(2) {
    transform: none;
  }

  .about-image-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    transform: none;
    display: inline-block;
  }

  .features-image {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 20px 0;
    background: var(--primary);
    border-radius: 12px;
    margin-top: 16px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .section {
    padding: 60px 0;
  }

  .form-section {
    padding: 28px;
  }

  .footer-col:first-child {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 24px;
    width: 100%;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
