/* ============================================
   CLEARHAZE - VINTAGE RETRO STYLE CSS
   Authentic 1950s-1970s inspired design
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2C1810;
  background-color: #F5E6D3;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

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

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - VINTAGE STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #8B4513;
  text-shadow: 2px 2px 0px rgba(244, 162, 97, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, #D4A574 0%, #C9944A 100%);
  padding: 16px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #8B4513;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
}

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

.main-nav a {
  color: #2C1810;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  border: 2px solid #8B4513;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-nav a:hover {
  background: #F4A261;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #D4A574;
  color: #2C1810;
  border: 3px solid #8B4513;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #D4A574 0%, #C9944A 100%);
  padding: 80px 30px 30px;
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0,0,0,0.3);
  border-left: 4px solid #8B4513;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 3px solid #8B4513;
  color: #2C1810;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2C1810;
  padding: 14px 20px;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid #8B4513;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: #F4A261;
  color: #FFF;
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - RETRO STYLE
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.btn-primary {
  background: #F4A261;
  color: #2C1810;
  border-color: #8B4513;
}

.btn-primary:hover {
  background: #D4A574;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: #8B4513;
  border-color: #8B4513;
}

.btn-secondary:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.btn-text {
  background: transparent;
  border: none;
  color: #8B4513;
  padding: 8px 16px;
  box-shadow: none;
  text-decoration: underline;
}

.btn-text:hover {
  color: #F4A261;
  transform: translateX(4px);
}

/* ============================================
   HERO SECTION - VINTAGE BILLBOARD STYLE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 4px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #2C1810;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px #F5E6D3, 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.hero p {
  font-size: 18px;
  color: #2C1810;
  margin-bottom: 16px;
  font-weight: 600;
}

.subheadline {
  font-size: 24px !important;
  font-family: 'Georgia', serif;
  font-style: italic;
  margin-bottom: 24px !important;
}

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

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

.trust-badges span {
  background: rgba(255,255,255,0.4);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  color: #2C1810;
  border: 2px solid #8B4513;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

/* ============================================
   SECTIONS - VINTAGE CARD STYLE
   ============================================ */

section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background: #F5E6D3;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed #D4A574;
  border-radius: 8px;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: sepia(50%) hue-rotate(-10deg);
}

.benefit-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-card p {
  color: #2C1810;
  font-size: 15px;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
  background: #E8D5C4;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #F4A261;
  border-radius: 50%;
  border: 3px solid #8B4513;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.service-card.featured {
  border-color: #F4A261;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE4C4 100%);
  transform: scale(1.05);
}

.service-card.featured::after {
  background: #E76F51;
}

.service-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p {
  color: #2C1810;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Georgia', serif;
  margin: 20px 0;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

/* ============================================
   SOCIAL PROOF - VINTAGE TESTIMONIALS
   ============================================ */

.social-proof {
  background: #F5E6D3;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #F4A261;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: #2C1810;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #8B4513;
  text-align: right;
  font-style: normal;
  font-size: 14px;
}

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

.stat {
  text-align: center;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px 48px;
  border-radius: 12px;
  border: 4px solid #F4A261;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

.stat .label {
  display: block;
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #8B4513;
  border-bottom: 6px solid #8B4513;
}

.cta-final h2,
.cta-section h2 {
  color: #2C1810;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(245, 230, 211, 0.5);
}

.cta-final p,
.cta-section p {
  font-size: 18px;
  color: #2C1810;
  margin-bottom: 32px;
  font-weight: 600;
}

.guarantee {
  font-size: 14px !important;
  font-style: italic;
  margin-top: 24px !important;
}

/* ============================================
   SERVICES LIST PAGE
   ============================================ */

.services-list {
  background: #F5E6D3;
}

.service-detail {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  margin-bottom: 32px;
  position: relative;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed #D4A574;
  border-radius: 8px;
  pointer-events: none;
}

.service-detail h2 {
  color: #8B4513;
  text-align: left;
  margin-bottom: 16px;
  font-size: 32px;
}

.service-detail .tagline {
  font-style: italic;
  color: #F4A261;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 20px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Georgia', serif;
  margin: 24px 0;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing {
  background: #E8D5C4;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(25% - 32px);
  min-width: 250px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.pricing-card.featured {
  border-color: #F4A261;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE4C4 100%);
  transform: scale(1.05);
  border-width: 5px;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E76F51;
  color: #FFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 3px solid #8B4513;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  color: #8B4513;
  margin-bottom: 20px;
  font-size: 24px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Georgia', serif;
  margin: 16px 0;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

.pricing-card .price span {
  font-size: 18px;
  color: #8B4513;
}

.pricing-card .size {
  font-size: 16px;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #2C1810;
  font-size: 14px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .popular-for {
  font-size: 13px;
  color: #8B4513;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* PRICING TABLE */
.pricing-table {
  background: #F5E6D3;
}

.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFF8E7;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.pricing-table thead {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
}

.pricing-table th {
  padding: 20px;
  text-align: left;
  color: #2C1810;
  font-weight: 700;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-bottom: 3px solid #8B4513;
}

.pricing-table td {
  padding: 20px;
  border-bottom: 2px solid #E8D5C4;
  color: #2C1810;
}

.pricing-table tbody tr:hover {
  background: #FFF8E7;
}

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

/* WHAT'S INCLUDED */
.whats-included {
  background: #E8D5C4;
}

.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 20px 28px;
  border-radius: 8px;
  border: 3px solid #D4A574;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.included-item img {
  width: 32px;
  height: 32px;
  filter: sepia(50%) hue-rotate(-10deg);
}

.included-item p {
  margin: 0;
  color: #2C1810;
  font-weight: 600;
  font-size: 15px;
}

/* PROMOTIONS */
.promotions {
  background: #F5E6D3;
  text-align: center;
}

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

.promo-card {
  background: linear-gradient(135deg, #FFE4C4 0%, #FFDAB9 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #F4A261;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card::before {
  content: '★';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 60px;
  color: #E76F51;
}

.promo-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.promo-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 24px;
}

.promo-card p {
  color: #2C1810;
  font-size: 16px;
}

.promo-code {
  background: #F4A261;
  color: #2C1810;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  border: 3px solid #8B4513;
  display: inline-block;
  margin-top: 16px;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

.promo-validity {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 32px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.company-story {
  background: #F5E6D3;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.timeline-item {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 24px 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  min-width: 180px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #D4A574;
  transform: translateY(-50%);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.timeline-item .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

.timeline-item p {
  font-size: 14px;
  color: #2C1810;
  margin: 0;
  font-weight: 600;
}

.mission-vision {
  background: #E8D5C4;
}

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

.content-block {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  transition: all 0.3s ease;
}

.content-block:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.content-block h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
}

.values-list {
  margin-top: 32px;
}

.values-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #2C1810;
  font-size: 16px;
}

.values-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-size: 24px;
}

.values-list strong {
  color: #8B4513;
  font-size: 18px;
}

.numbers {
  background: #F5E6D3;
}

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

.stat-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px 40px;
  border-radius: 12px;
  border: 4px solid #F4A261;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
  min-width: 180px;
  flex: 1 1 calc(33.333% - 24px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.why-choose-us {
  background: #E8D5C4;
}

.differentiators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.diff-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.diff-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 22px;
}

.testimonials {
  background: #F5E6D3;
}

.testimonials .rating {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #F4A261;
  margin-top: 32px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.facility-overview {
  background: #E8D5C4;
  text-align: center;
}

.storage-units {
  background: #F5E6D3;
}

.units-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.unit-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.unit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.unit-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 22px;
}

.security-systems {
  background: #E8D5C4;
}

.security-list {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.security-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
  font-size: 16px;
}

.security-list li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  font-size: 24px;
}

.amenities {
  background: #F5E6D3;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.amenity-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.amenity-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: sepia(50%) hue-rotate(-10deg);
}

.amenity-card h3 {
  color: #8B4513;
  margin-bottom: 8px;
  font-size: 18px;
}

.amenity-card p {
  color: #2C1810;
  font-size: 14px;
  margin: 0;
}

.location {
  background: #E8D5C4;
}

.location ul {
  max-width: 600px;
  margin: 24px auto 0;
}

.location ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
}

.location ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 18px;
}

.visit-cta {
  background: #F5E6D3;
}

.visit-cta ul {
  max-width: 600px;
  margin: 24px auto 32px;
  text-align: left;
}

.visit-cta ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
}

.visit-cta ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  background: #F5E6D3;
}

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

.method-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: sepia(50%) hue-rotate(-10deg);
}

.method-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 22px;
}

.method-card p {
  color: #2C1810;
  font-size: 16px;
}

.method-card a {
  color: #F4A261;
  font-weight: 600;
}

.method-card a:hover {
  text-decoration: underline;
}

.availability {
  text-align: center;
  font-size: 16px;
  color: #8B4513;
  font-weight: 600;
  margin-top: 24px;
}

.contact-info {
  background: #E8D5C4;
}

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

.hours-block {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  transition: all 0.3s ease;
}

.hours-block:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.hours-block h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 22px;
}

.hours-block p {
  color: #2C1810;
  font-weight: 500;
  font-size: 15px;
}

.location-map {
  background: #F5E6D3;
}

.map-info {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.map-info h3 {
  color: #8B4513;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.map-info ul {
  margin-top: 16px;
}

.map-info ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
}

.map-info ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 18px;
}

.quick-questions {
  background: #E8D5C4;
}

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

.faq-list li {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 20px 24px;
  border-radius: 8px;
  border: 3px solid #D4A574;
  margin-bottom: 16px;
  color: #2C1810;
  font-weight: 500;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

.faq-list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.faq-list strong {
  color: #8B4513;
  display: block;
  margin-bottom: 8px;
}

.faq-list a {
  color: #F4A261;
  font-weight: 600;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  background: #F5E6D3;
}

.legal-content .container {
  max-width: 900px;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 48px;
  border-radius: 12px;
  border: 4px solid #D4A574;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.legal-content h2 {
  color: #8B4513;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #8B4513;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.legal-content ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #2C1810;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-size: 24px;
}

.legal-content a {
  color: #F4A261;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.summary,
.key-points {
  background: #E8D5C4;
}

.summary .container,
.key-points .container {
  max-width: 800px;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #F4A261;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.2);
}

.summary h2,
.key-points h2 {
  color: #8B4513;
  text-align: center;
  margin-bottom: 24px;
}

.summary ul,
.key-points ul {
  margin: 0;
}

.summary ul li,
.key-points ul li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #2C1810;
  font-weight: 600;
}

.summary ul li::before,
.key-points ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.success-icon {
  width: 100px;
  height: 100px;
  background: #F4A261;
  color: #FFF;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 6px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.next-steps,
.useful-links,
.alternative-contact {
  background: #F5E6D3;
}

.steps-list {
  max-width: 600px;
  margin: 32px auto 0;
  counter-reset: step-counter;
}

.steps-list li {
  padding: 20px 20px 20px 60px;
  position: relative;
  color: #2C1810;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  border-radius: 8px;
  border: 3px solid #D4A574;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #F4A261;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 3px solid #8B4513;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 24px;
}

.links-list {
  max-width: 600px;
  margin: 32px auto 0;
}

.links-list li {
  margin-bottom: 16px;
}

.links-list a {
  display: block;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  border-radius: 8px;
  border: 3px solid #D4A574;
  color: #8B4513;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
}

.links-list a:hover {
  background: #F4A261;
  color: #FFF;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.phone-cta {
  font-size: 24px;
  margin: 24px 0;
}

.phone-cta a {
  color: #F4A261;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.phone-cta a:hover {
  text-decoration: underline;
}

.testimonial {
  background: #E8D5C4;
}

.testimonial .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial .rating {
  color: #F4A261;
  font-size: 24px;
  margin-top: 16px;
  font-weight: 700;
}

.content {
  background: #F5E6D3;
  text-align: center;
}

.content h2 {
  color: #8B4513;
  margin-bottom: 20px;
}

.content h3 {
  color: #8B4513;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* ============================================
   BENEFITS LIST
   ============================================ */

.benefits-list {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #2C1810;
  font-weight: 600;
  font-size: 16px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  color: #F5E6D3;
  padding: 48px 20px 24px;
  border-top: 6px solid #D4A574;
}

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

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

.footer-column h4 {
  color: #F4A261;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
}

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

.footer-column nav a {
  color: #F5E6D3;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-column nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4A261;
  transition: all 0.3s ease;
}

.footer-column nav a:hover {
  color: #F4A261;
  padding-left: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #D4A574;
  font-size: 14px;
  color: #F5E6D3;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  color: #F5E6D3;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  border-top: 4px solid #D4A574;
  display: none;
}

#cookieConsent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

#cookieConsent p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

#cookieConsent button {
  padding: 10px 20px;
  border: 3px solid;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

#acceptCookies {
  background: #F4A261;
  color: #2C1810;
  border-color: #D4A574;
}

#acceptCookies:hover {
  background: #E76F51;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
}

#rejectCookies {
  background: transparent;
  color: #F5E6D3;
  border-color: #D4A574;
}

#rejectCookies:hover {
  background: rgba(245, 230, 211, 0.1);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
}

#cookieSettings {
  background: transparent;
  color: #F4A261;
  border-color: #F4A261;
}

#cookieSettings:hover {
  background: rgba(244, 162, 97, 0.1);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.4);
}

/* COOKIE PREFERENCES MODAL */
#cookieModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookieModal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%);
  padding: 40px;
  border-radius: 12px;
  border: 5px solid #D4A574;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-content h3 {
  color: #8B4513;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 3px solid #D4A574;
}

.cookie-category h4 {
  color: #8B4513;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #2C1810;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D4A574;
  border-radius: 26px;
  transition: 0.3s;
  border: 3px solid #8B4513;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: #FFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #F4A261;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: 3px solid;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

#saveCookiePreferences {
  background: #F4A261;
  color: #2C1810;
  border-color: #8B4513;
}

#saveCookiePreferences:hover {
  background: #E76F51;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

#closeCookieModal {
  background: transparent;
  color: #8B4513;
  border-color: #8B4513;
}

#closeCookieModal:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav,
  .header-content .btn-primary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .subheadline {
    font-size: 18px !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Cards */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .pricing-grid,
  .stats-grid,
  .differentiators-grid,
  .units-grid,
  .amenities-grid,
  .methods-grid,
  .hours-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card,
  .stat-card,
  .diff-card,
  .unit-card,
  .amenity-card,
  .method-card,
  .hours-block {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .service-card.featured {
    transform: scale(1);
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  /* Content Grid */
  .content-grid {
    flex-direction: column;
  }
  
  .content-block {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  #cookieConsent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  #cookieConsent .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieConsent button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Tables */
  .pricing-table table {
    font-size: 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px;
  }
  
  .legal-content .container,
  .summary .container,
  .key-points .container {
    padding: 24px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookieConsent,
  #cookieModal,
  .cta-buttons,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF CSS */