:root {
  --color-primary: #1a365d;
  --color-secondary: #2b6cb0;
  --color-accent: #ed8936;
  --color-light: #f7fafc;
  --color-dark: #1a202c;
  --color-text: #2d3748;
  --color-muted: #718096;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero-funnel {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2c5282 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-funnel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: drift 20s linear infinite;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-funnel h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: #dd6b20;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237,137,54,0.3);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-light:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

/* Problem Section */
.problem-section {
  padding: 90px 20px;
  background: var(--color-light);
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.problem-text {
  flex: 1;
  min-width: 300px;
}

.problem-text h2 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.problem-text p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 15px;
}

.problem-image {
  flex: 1;
  min-width: 300px;
}

.problem-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-section {
  padding: 70px 20px;
  background: var(--color-primary);
  color: #fff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 180px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* Rules Section */
.rules-section {
  padding: 100px 20px;
}

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

.section-header h2 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.rule-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.rule-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.rule-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rule-content h3 {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.rule-content p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* Story Section */
.story-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  text-align: center;
}

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

.story-highlight {
  background: #fff;
  border-left: 4px solid var(--color-accent);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-soft);
}

.story-highlight p {
  font-style: italic;
  font-size: 1.15rem;
  margin: 0;
  color: var(--color-dark);
}

/* Testimonials */
.testimonials-section {
  padding: 90px 20px;
  background: #fff;
}

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

.testimonial-card {
  flex: 1;
  min-width: 280px;
  background: var(--color-light);
  padding: 35px;
  border-radius: 12px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: var(--color-dark);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: var(--color-light);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

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

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.price-period {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--color-text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
}

/* Form Section */
.form-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2c5282 100%);
  color: #fff;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.form-info {
  flex: 1;
  min-width: 300px;
}

.form-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.form-info p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.form-benefits {
  list-style: none;
}

.form-benefits li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}

.form-benefits li::before {
  content: '→';
  color: var(--color-accent);
  font-weight: 700;
}

.form-container {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.form-container h3 {
  color: var(--color-dark);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

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

.form-group label {
  display: block;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: #dd6b20;
  transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
  padding: 60px 20px;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
}

.urgency-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.urgency-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* About Page */
.page-hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2c5282 100%);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 20px;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

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

.about-text h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

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

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

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.values-section {
  padding: 80px 20px;
  background: var(--color-light);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* Contact Page */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

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

.contact-info h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.contact-details h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--color-muted);
  font-size: 0.98rem;
}

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

/* Footer */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.95rem;
}

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

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

.cookie-accept,
.cookie-reject {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

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

.cookie-accept:hover {
  background: #dd6b20;
}

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

.cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: #fff;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(237,137,54,0.4);
}

.sticky-cta a:hover {
  background: #dd6b20;
  transform: scale(1.05);
  color: #fff;
}

/* Thanks Page */
.thanks-section {
  padding: 150px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 30px;
}

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

.legal-content h1 {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin: 35px 0 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 1.02rem;
}

.legal-content ul {
  margin: 15px 0 15px 25px;
  color: var(--color-text);
}

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

/* FAQ Section */
.faq-section {
  padding: 90px 20px;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 25px 0;
}

.faq-question {
  font-size: 1.15rem;
  color: var(--color-dark);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 15px;
  color: var(--color-muted);
  font-size: 1.02rem;
}

/* Guarantee Section */
.guarantee-section {
  padding: 80px 20px;
  background: var(--color-light);
}

.guarantee-box {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--color-accent);
}

.guarantee-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), #dd6b20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 60px;
  height: 60px;
  fill: #fff;
}

.guarantee-text h2 {
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 15px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow-medium);
  }

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

  .hamburger {
    display: flex;
  }

  .hero-funnel h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .rule-item {
    flex-direction: column;
    text-align: center;
  }

  .rule-number {
    margin: 0 auto;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 70px;
  }

  .sticky-cta a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
  }
}
