:root {
  --primary: #1a3a5c;
  --secondary: #2d6a4f;
  --accent: #d4a373;
  --light: #f8f9fa;
  --dark: #0d1b2a;
  --text: #2b2d42;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

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

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

/* Navigation */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

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

.logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

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

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

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

.nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  opacity: 0.05;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h1 {
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--secondary);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn-large {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--light);
}

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

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.section-gradient h2, .section-gradient h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 15px;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Problem Section */
.problem-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.problem-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.problem-card p {
  color: var(--text-light);
}

/* Story Section */
.story-section {
  padding: 100px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.story-content.reverse {
  flex-direction: row-reverse;
}

.story-image {
  flex: 1;
  position: relative;
}

.story-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  margin-bottom: 25px;
}

.story-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

/* Trust Elements */
.trust-bar {
  background: var(--primary);
  padding: 40px 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  text-align: center;
  color: var(--white);
}

.trust-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
}

.trust-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.service-card {
  flex: 1;
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.service-card-image svg {
  width: 80px;
  height: 80px;
  fill: var(--white);
  opacity: 0.9;
}

.service-card-body {
  padding: 30px;
}

.service-card h3 {
  margin-bottom: 12px;
}

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

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

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

.service-price .period {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.service-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text);
  font-size: 1.05rem;
}

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

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

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

/* Benefits List */
.benefits-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  flex: 1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.benefit-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

.benefits-image {
  flex: 1;
}

.benefits-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 70px 50px;
  border-radius: var(--radius);
  color: var(--white);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0.95;
  font-size: 1.1rem;
}

.cta-box .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-box .btn:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Form Section */
.form-section {
  background: var(--light);
  padding: 100px 0;
}

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

.form-info {
  flex: 1;
}

.form-info h2 {
  margin-bottom: 20px;
}

.form-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.form-benefits li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text);
}

.form-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.form-container {
  flex: 1;
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

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

.form-submit:hover {
  background: var(--primary);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--secondary);
}

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

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

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

.faq-item.active .faq-answer {
  padding: 0 25px 22px;
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-light);
}

/* Urgency Banner */
.urgency-banner {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.sticky-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cta p {
  font-weight: 600;
  color: var(--dark);
}

.sticky-cta .btn {
  padding: 12px 30px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 30px;
}

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

.footer-brand {
  flex: 2;
  min-width: 280px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 350px;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

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

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

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

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

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

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 25px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
  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-content p {
  flex: 1;
  min-width: 300px;
}

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

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

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-reject {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.about-intro {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-intro-image {
  flex: 1;
}

.about-intro-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.about-intro-text {
  flex: 1;
}

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

.value-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

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

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

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

.contact-details h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-details p {
  color: var(--text-light);
}

.contact-form-wrapper {
  flex: 1;
}

/* Services Page */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-full-card {
  display: flex;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-full-card:nth-child(even) {
  flex-direction: row-reverse;
}

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

.service-full-image svg {
  width: 100px;
  height: 100px;
  fill: var(--white);
  opacity: 0.9;
}

.service-full-content {
  flex: 1.5;
  padding: 40px;
}

.service-full-content h3 {
  margin-bottom: 15px;
}

.service-full-content > p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.legal-content h2 {
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin: 30px 0 15px;
  font-size: 1.2rem;
}

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

.legal-content ul {
  margin: 15px 0 15px 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text);
}

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

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

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

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

.thanks-content h1 {
  margin-bottom: 20px;
}

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

/* Mobile Styles */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .hamburger {
    display: flex;
  }

  .hero-content,
  .story-content,
  .story-content.reverse,
  .benefits-split,
  .form-wrapper,
  .about-intro,
  .contact-grid {
    flex-direction: column;
  }

  .service-full-card,
  .service-full-card:nth-child(even) {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .cta-box {
    padding: 50px 25px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .footer-grid {
    gap: 40px;
  }

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