/* ========================================
   Galaxy Fringe - Elegant Classic Design
   Timeless elegance with refined elements
======================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Garamond', 'Georgia', serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #F8F6F3;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #3a3a3a;
}

a {
  color: #8B9DC3;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.7;
}

blockquote {
  border-left: 4px solid #D4AF37;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 20px;
  color: #555;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e3df;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #2C3E50;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle:hover {
  background-color: #D4AF37;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #2C3E50;
  padding: 16px 0;
  border-bottom: 1px solid #e5e3df;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 12px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 3px solid #D4AF37;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 22px;
  color: #555;
  margin-bottom: 32px;
  font-style: italic;
  line-height: 1.6;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #666;
}

.breadcrumb a {
  color: #8B9DC3;
}

.breadcrumb a:hover {
  color: #D4AF37;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #2C3E50;
  color: #ffffff;
  border-color: #2C3E50;
}

.btn-primary:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* Value Proposition */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e5e3df;
  border-bottom: 1px solid #e5e3df;
}

.value-proposition h2 {
  margin-bottom: 24px;
}

.value-proposition p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 19px;
  line-height: 1.8;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #2C3E50;
  padding: 12px 24px;
  background-color: #f8f6f3;
  border: 1px solid #e5e3df;
  border-radius: 2px;
  font-weight: 500;
}

/* Service Grid */
.service-grid,
.service-detail-grid,
.project-grid,
.value-grid,
.principle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.service-detail-card,
.project-card,
.value-card,
.principle-card {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e3df;
  border-radius: 2px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover,
.service-detail-card:hover,
.project-card:hover,
.value-card:hover,
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #D4AF37;
}

.service-card h3,
.service-detail-card h3,
.project-card h3,
.value-card h3,
.principle-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p,
.service-detail-card p,
.project-card p,
.value-card p,
.principle-card p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #D4AF37;
  margin-top: auto;
}

.timeline,
.project-date,
.project-budget,
.project-meta {
  font-size: 15px;
  color: #777;
  font-style: italic;
}

.tagline {
  font-style: italic;
  color: #8B9DC3;
  font-size: 16px;
}

/* Service Detail Cards */
.service-detail-card ul {
  margin: 16px 0;
  padding-left: 24px;
}

.service-detail-card li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #555;
}

/* Testimonials */
.testimonials {
  background-color: #f8f6f3;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #D4AF37;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  font-style: normal;
  margin-top: 12px;
}

.testimonial-card .rating {
  color: #D4AF37;
  font-size: 20px;
  letter-spacing: 4px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.process-step {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e3df;
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 16px;
  color: #555;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2634 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  color: #ffffff;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 40px;
}

.cta-banner p {
  color: #e5e3df;
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-banner .contact-info,
.cta-banner .contact-hours {
  color: #D4AF37;
  font-size: 16px;
  margin-top: 24px;
  font-style: italic;
}

/* Contact */
.contact-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card,
.trust-item {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e3df;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-card .address {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #2C3E50;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
}

.trust-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  border: 2px solid #e5e3df;
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: #D4AF37;
  background-color: #f8f6f3;
}

/* Form Placeholder */
.form-placeholder {
  background-color: #f8f6f3;
  padding: 48px;
  border: 2px dashed #e5e3df;
  text-align: center;
  margin-top: 32px;
}

.form-placeholder p {
  margin-bottom: 16px;
}

.form-placeholder .note {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.next-steps {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e3df;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step h3 {
  color: #D4AF37;
  font-size: 22px;
  margin-bottom: 16px;
}

.content-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto 0;
}

.content-link {
  background-color: #ffffff;
  padding: 20px 32px;
  border: 1px solid #e5e3df;
  text-align: center;
  font-size: 18px;
  color: #2C3E50;
  transition: all 0.3s ease;
  display: block;
}

.content-link:hover {
  background-color: #f8f6f3;
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateX(8px);
}

/* Philosophy */
.philosophy-intro {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.philosophy-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 19px;
}

.manifesto {
  background-color: #f8f6f3;
  padding: 60px 20px;
}

.belief-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
  padding: 0;
}

.belief-list li {
  font-size: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e3df;
  color: #2C3E50;
  font-weight: 500;
}

.belief-list li:before {
  content: "✓";
  color: #D4AF37;
  font-weight: bold;
  margin-right: 16px;
  font-size: 22px;
}

.signature {
  text-align: right;
  font-style: italic;
  color: #666;
  margin-top: 32px;
  font-size: 18px;
}

/* Legal Pages */
.legal-content {
  background-color: #ffffff;
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C3E50;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #555;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 20px;
}

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

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

.last-updated {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

.cookie-controls {
  background-color: #f8f6f3;
  padding: 32px;
  margin-top: 32px;
  border: 1px solid #e5e3df;
}

.cookie-controls p {
  margin-bottom: 12px;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: #e5e3df;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

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

.footer-column h4 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.8;
  color: #b8c2d3;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 15px;
  color: #b8c2d3;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: #8B9DC3;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1998;
  border-top: 3px solid #D4AF37;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

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

.cookie-consent-content p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 15px;
  color: #2C3E50;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  font-family: 'Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background-color: #2C3E50;
  color: #ffffff;
  border-color: #2C3E50;
}

#accept-all-cookies:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

#reject-all-cookies {
  background-color: transparent;
  color: #666;
  border-color: #ccc;
}

#reject-all-cookies:hover {
  background-color: #f5f3f0;
  border-color: #999;
}

#cookie-settings {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

#cookie-settings:hover {
  background-color: #2C3E50;
  color: #ffffff;
}

/* Cookie Preferences Modal */
#cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cookie-preferences-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #D4AF37;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
  color: #2C3E50;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e3df;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 15px;
  color: #2C3E50;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 200px;
  padding: 14px 24px;
  font-family: 'Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-cookie-preferences {
  background-color: #2C3E50;
  color: #ffffff;
  border-color: #2C3E50;
}

#save-cookie-preferences:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  p {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Adjust section padding */
  section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Flex layouts to column */
  .service-grid,
  .service-detail-grid,
  .project-grid,
  .value-grid,
  .principle-grid,
  .testimonial-grid,
  .contact-grid,
  .trust-grid,
  .process-steps {
    flex-direction: column;
  }
  
  .service-card,
  .service-detail-card,
  .project-card,
  .value-card,
  .principle-card,
  .testimonial-card,
  .contact-card,
  .trust-item,
  .process-step {
    flex: 1 1 100%;
  }
  
  /* Stats layout */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
}