/* =================================================================
   SteadyRestore - Modern Bold Design Style
   Complete CSS Styles for All Pages
   ================================================================= */

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* Typography - Modern Bold Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A2E;
}

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

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

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #C5A572;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

blockquote {
  border-left: 4px solid #E94560;
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  background: #F5F5F5;
  font-size: 18px;
}

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

/* Header Styles - Modern Bold */
.site-header {
  background: #1A1A2E;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

/* Main Navigation - Bold Style */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #E94560;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E94560;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A1A2E;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #E94560;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E94560;
  border-left-color: #E94560;
  background: rgba(233, 69, 96, 0.1);
}

/* Buttons - Bold Modern Style */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #E94560;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
  background: #1A1A2E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
  background: #C5A572;
  color: #1A1A2E;
  box-shadow: 0 4px 16px rgba(197, 165, 114, 0.3);
}

.btn-secondary:hover {
  background: #1A1A2E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #E94560;
  padding: 8px 16px;
  border: 2px solid #E94560;
  font-weight: 700;
}

.btn-link:hover {
  background: #E94560;
  color: #FFFFFF;
}

/* Hero Section - Bold & Impactful */
.hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(233, 69, 96, 0.1) 100%);
  transform: skewX(-15deg);
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #E0E0E0;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Section Styles */
.section,
.services-overview,
.process-section,
.benefits-section,
.testimonials-section,
.trust-section,
.cta-section,
.service-detail,
.faq-section,
.story-section,
.values-section,
.team-section,
.location-section,
.portfolio-intro,
.projects-section,
.pricing-intro,
.pricing-tables,
.package-deals,
.volume-discounts,
.featured-article,
.blog-grid,
.newsletter-section,
.contact-intro,
.contact-methods,
.legal-content,
.error-section,
.suggestions-section,
.popular-pages,
.thank-you-section,
.next-steps,
.cta-links {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.page-header {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: #E0E0E0;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Card Grids - Flexbox with proper spacing */
.services-grid,
.benefits-grid,
.values-grid,
.team-grid,
.project-grid,
.pricing-grid,
.package-grid,
.articles-grid,
.contact-grid,
.faq-grid,
.page-cards,
.link-cards,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Service Cards - Modern Bold */
.service-card,
.benefit-card,
.value-card,
.team-member,
.project-card,
.pricing-card,
.package-card,
.article-card,
.contact-card,
.faq-item,
.page-card,
.link-card,
.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
  border: 3px solid transparent;
}

.service-card:hover,
.project-card:hover,
.article-card:hover,
.page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.2);
  border-color: #E94560;
}

.service-card h3,
.benefit-card h3,
.project-card h3 {
  color: #E94560;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-price,
.package-price {
  color: #1A1A2E;
  font-weight: 700;
  font-size: 18px;
  margin: 16px 0;
  display: block;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 8px;
}

.savings-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #E94560;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Process Timeline - Flexbox */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.process-step {
  flex: 1 1 calc(20% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #E94560;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

/* Testimonials - Bold Cards */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #F8F8F8;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #E94560;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1A1A2E;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.rating {
  color: #C5A572;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Stats Section - Bold Display */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  border-radius: 12px;
  margin-top: 40px;
}

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

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

.stat-label {
  color: #FFFFFF;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 8px;
  margin: 32px 0;
}

.stats-bar span {
  font-weight: 600;
  color: #1A1A2E;
  padding: 8px 16px;
  background: #FFFFFF;
  border-radius: 6px;
  border: 2px solid #E94560;
}

/* CTA Section - Bold & Prominent */
.cta-section {
  background: linear-gradient(135deg, #E94560 0%, #C5A572 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 0;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

/* Category & Meta Badges */
.article-category,
.project-category {
  display: inline-block;
  background: #E94560;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-meta {
  color: #999;
  font-size: 14px;
  margin-top: 16px;
}

/* Pricing Tables */
.pricing-card {
  text-align: center;
  border: 3px solid #E0E0E0;
}

.pricing-card:hover {
  border-color: #E94560;
}

.price {
  font-size: 36px;
  color: #E94560;
  font-weight: 700;
  margin: 24px 0;
  display: block;
}

.price span {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 8px;
}

.turnaround {
  color: #666;
  font-size: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #E0E0E0;
}

/* Discount Table */
.discount-table {
  background: #F8F8F8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
}

.discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 2px solid #FFFFFF;
}

.discount-row:last-child {
  border-bottom: none;
}

.quantity {
  font-weight: 600;
  color: #1A1A2E;
}

.discount {
  font-weight: 700;
  color: #E94560;
  font-size: 18px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #E94560;
}

.privacy-notice {
  text-align: center;
  font-size: 12px;
  color: #999;
}

/* Location Info - Flexbox */
.location-info,
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.address,
.hours,
.address-block,
.hours-block {
  flex: 1 1 300px;
  padding: 24px;
  background: #F8F8F8;
  border-radius: 8px;
  border-left: 4px solid #E94560;
}

.location-note {
  margin-top: 24px;
  padding: 16px;
  background: #FFF9E6;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
}

/* Legal Content */
.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #F8F8F8;
  border-radius: 8px;
  border-left: 4px solid #E94560;
}

.legal-section h2 {
  color: #E94560;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.legal-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E94560;
  font-weight: 700;
}

/* Error Page - 404 */
.error-content {
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E94560;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 24px;
}

.suggestion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.suggestion-link {
  padding: 16px 24px;
  background: #F8F8F8;
  border-radius: 8px;
  border-left: 4px solid #E94560;
  font-weight: 600;
  color: #1A1A2E;
  transition: all 0.3s ease;
}

.suggestion-link:hover {
  background: #E94560;
  color: #FFFFFF;
  transform: translateX(8px);
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
}

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

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

/* Guarantees & Promise Lists */
.guarantees,
.promise-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.guarantees li,
.promise-list li {
  padding: 12px 16px 12px 48px;
  position: relative;
  margin-bottom: 12px;
  background: #F8F8F8;
  border-radius: 8px;
}

.guarantees li::before,
.promise-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #28A745;
  font-weight: 700;
  font-size: 20px;
}

/* Footer - Modern Bold */
.site-footer {
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #E94560;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

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

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

/* Cookie Consent Banner - Fixed Bottom */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: #28A745;
  color: #FFFFFF;
}

.accept-all:hover {
  background: #218838;
}

.reject-all {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #E0E0E0;
}

.reject-all:hover {
  background: #E94560;
  border-color: #E94560;
}

.cookie-settings {
  background: transparent;
  color: #C5A572;
  border: 2px solid #C5A572;
}

.cookie-settings:hover {
  background: #C5A572;
  color: #1A1A2E;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #E94560;
  color: #FFFFFF;
}

.cookie-category {
  padding: 20px;
  background: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: #1A1A2E;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

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

.cookie-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

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

.save-preferences {
  flex: 1;
  padding: 14px 24px;
  background: #28A745;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences:hover {
  background: #218838;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .error-code { font-size: 80px; }
  
  /* Hide desktop navigation, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header adjustments */
  .site-header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards - stack on mobile */
  .service-card,
  .benefit-card,
  .value-card,
  .team-member,
  .project-card,
  .pricing-card,
  .package-card,
  .article-card,
  .contact-card,
  .page-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Process timeline - vertical on mobile */
  .process-step {
    flex: 1 1 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Location info */
  .location-info,
  .location-details {
    flex-direction: column;
  }
  
  /* Discount table */
  .discount-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  /* Stats bar */
  .stats-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .container {
    padding: 0 16px;
  }
  
  .service-card,
  .pricing-card,
  .package-card {
    padding: 24px;
  }
  
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  .site-header {
    position: static;
    box-shadow: none;
  }
}