:root {
  --primary: #50C878;
  --primary-hover: #45b369;
  --accent: #BFFF00;
  --highlight: #138808;
  --bg-color: #ffffff;
  --bg-light-green: #f8fff8;
  --bg-gray: #f5f7f5;
  --text: #1a2a1a;
  --text-muted: #4a5c4a;
  --border: #e2e8e2;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 42, 26, 0.08);
  --shadow-sm: 0 4px 12px rgba(26, 42, 26, 0.05);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

.section {
  padding: 80px 0;
}

.section-gray {
  background-color: var(--bg-gray);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--highlight);
}

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

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

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 200, 120, 0.5);
}

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

.btn-secondary:hover {
  background-color: #aae600;
  color: var(--highlight);
  transform: translateY(-2px);
}

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

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

.btn-text {
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 15px 0;
}

.header.scrolled {
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--highlight);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

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

.nav-link:hover {
  color: var(--primary);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--highlight);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('images/studio-aerobics-group-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(19, 136, 8, 0.8), rgba(26, 42, 26, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Steps Timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background-color: var(--border);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 24px;
  padding-left: 80px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.step-number {
  position: absolute;
  left: 10px;
  top: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  color: var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border: 4px solid var(--white);
}

.step-title {
  font-family: var(--font-heading);
  color: var(--highlight);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* Mini Prices */
.mini-prices-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.mini-price-card {
  background-color: var(--bg-light-green);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.mini-price-card h4 {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.mini-price-card .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 10px;
}

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

/* Compact Booking Form */
.compact-booking {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  border-top: 4px solid var(--primary);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.2);
}

.form-submit {
  flex: 1;
  min-width: 200px;
  height: 48px;
}

.learn-more-wrapper {
  text-align: center;
}

/* Slider */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--highlight);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

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

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--highlight);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--bg-light-green);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.accordion-item.active .accordion-content {
  padding: 0 24px 24px;
  max-height: 500px;
}

/* Circular About */
.about-layout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  min-height: 500px;
}

.about-center-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
  position: absolute;
  z-index: 2;
}

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

.about-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border);
}

.info-card:nth-child(even) { justify-self: flex-end; }

.info-icon {
  font-size: 2rem;
  background: var(--bg-light-green);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--highlight);
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.about-text p {
  margin-bottom: 16px;
}

/* Schedule Table */
.table-responsive {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table th,
.schedule-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table th {
  background-color: var(--highlight);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover {
  background-color: var(--bg-light-green);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-green { background: #d4edda; color: #155724; }
.badge-yellow { background: #fff3cd; color: #856404; }
.badge-red { background: #f8d7da; color: #721c24; }

/* Price Cards (Detailed) */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.price-card.detailed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.price-card.detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--highlight);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.price-card-header {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 30px;
}

.price-card-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-card-features li {
  margin-bottom: 15px;
  color: var(--text);
}

.price-btn {
  width: 100%;
}

/* Calculator */
.calc-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border);
}

.calc-content {
  flex: 1;
  padding: 40px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--highlight);
  margin-bottom: 10px;
}

.calc-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-range {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--primary);
}

.calc-result-box {
  background: var(--highlight);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 300px;
}

.calc-result-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.calc-result-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
}

.calc-result-benefit {
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 30px;
}

/* Pure Selling Text */
.selling-text-content {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent);
}

.quote-block {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 50px 0;
  padding: 0 20px;
  position: relative;
}

.selling-list {
  list-style: none;
  margin: 40px 0;
}

.selling-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
}

.selling-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.closing-text {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  margin-top: 40px;
  color: var(--accent);
}

/* Infographic */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.info-item-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.info-item-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 10px;
}

.info-item-desc {
  color: var(--text-muted);
}

/* Gallery */
.gallery-divider {
  border: 0;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 40px;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
}

/* Contacts */
.contacts-info-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--highlight);
}

.contact-icon {
  font-size: 1.5rem;
}

.bottom-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  max-width: 800px;
  margin: 0 auto;
}

.bottom-form-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--highlight);
  margin-bottom: 30px;
}

.form-submit-wrapper {
  margin-top: 20px;
  text-align: center;
}

.form-submit-full {
  width: 100%;
  max-width: 300px;
}

/* Footer */
.footer {
  background: var(--highlight);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-icon {
  filter: brightness(0) invert(1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-desc {
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--white);
  opacity: 0.8;
}

.footer ul a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-company p {
  margin-bottom: 8px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 2000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

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

.cookie-content a {
  text-decoration: underline;
}

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

/* Legal Pages */
.legal-page {
  padding: 120px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  color: var(--highlight);
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.legal-page > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  color: var(--highlight);
  margin: 30px 0 15px;
}

.legal-page p {
  margin-bottom: 15px;
}

.legal-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .about-layout { flex-direction: column; }
  .about-center-image { position: relative; margin-bottom: 30px; }
  .about-info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card { justify-self: center !important; }
  .calc-wrapper { flex-direction: column; }
  .calc-result-box { width: 100%; padding: 30px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  
  .nav.active { right: 0; }
  
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  
  .steps-timeline::before { left: 20px; }
  .step-card { padding-left: 60px; }
  .step-number { left: 0; width: 40px; height: 40px; font-size: 1rem; }
  
  .about-info-grid { grid-template-columns: 1fr; }
  
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-10px); }
  
  .quote-block { font-size: 1.4rem; margin: 30px 0; }
  
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
}
