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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #0a0a0a;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Industrial Modern Color Scheme */
:root {
  --primary: #1a1a1a;
  --secondary: #2a2a2a;
  --accent: #c9a961;
  --metal: #6b7280;
  --light: #e5e7eb;
  --dark: #0a0a0a;
  --border: #3a3a3a;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e5e7eb;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a961, #6b7280);
  margin-top: 12px;
}

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

p {
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 16px;
}

/* Header */
header {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 2px solid #3a3a3a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.header-content img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

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

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

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  border-left: 3px solid #c9a961;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #c9a961;
  color: #c9a961;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #c9a961;
  color: #0a0a0a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e5e7eb;
  padding: 18px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-bottom: 1px solid #3a3a3a;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #2a2a2a;
  color: #c9a961;
  padding-left: 40px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(201, 169, 97, 0.03) 10px,
    rgba(201, 169, 97, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #e5e7eb;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 20px;
  color: #9ca3af;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 40px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #c9a961;
  color: #0a0a0a;
  border-color: #c9a961;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #b89651;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
  background: #c9a961;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

.value-proposition,
.services-showcase,
.testimonials,
.products,
.company-story,
.mission,
.stats,
.showroom,
.business-benefits,
.industry-solutions,
.packages,
.advice-categories,
.featured-guides,
.buying-guides,
.maintenance-tips,
.contact-methods,
.departments,
.support,
.thank-you,
.next-steps,
.resources,
.popular-products {
  background: #0a0a0a;
}

.value-proposition {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid #3a3a3a;
}

.services-showcase {
  background: #0a0a0a;
  border-bottom: 1px solid #3a3a3a;
}

.testimonials {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 20px;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #c9a961;
  border-bottom: 3px solid #c9a961;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(201, 169, 97, 0.05) 2px,
    rgba(201, 169, 97, 0.05) 4px
  );
  pointer-events: none;
}

.cta-section h2 {
  color: #e5e7eb;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 32px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid #3a3a3a;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: #6b7280;
  margin-top: 20px;
}

.breadcrumbs a {
  color: #c9a961;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #b89651;
}

.trust-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid #c9a961;
  color: #c9a961;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layouts with Flexbox */
.features-grid,
.services-grid,
.products-grid,
.testimonials-grid,
.benefits-grid,
.industries-grid,
.packages-grid,
.categories-grid,
.guides-grid,
.tips-grid,
.methods-grid,
.departments-grid,
.values-grid,
.stats-grid,
.steps-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

/* Cards */
.feature-card,
.service-card,
.product-card,
.testimonial-card,
.benefit-card,
.industry-card,
.package-card,
.category-card,
.guide-card,
.tip-card,
.method-card,
.department-card,
.value-card,
.stat-card,
.step-card,
.resource-card {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  padding: 32px;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.feature-card::before,
.service-card::before,
.product-card::before,
.benefit-card::before,
.industry-card::before,
.package-card::before,
.category-card::before,
.guide-card::before,
.tip-card::before,
.method-card::before,
.department-card::before,
.value-card::before,
.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #c9a961;
  transition: height 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.benefit-card:hover,
.industry-card:hover,
.package-card:hover,
.category-card:hover,
.guide-card:hover,
.tip-card:hover,
.method-card:hover,
.department-card:hover,
.value-card:hover,
.resource-card:hover {
  background: #2a2a2a;
  border-color: #c9a961;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before,
.service-card:hover::before,
.product-card:hover::before,
.benefit-card:hover::before,
.industry-card:hover::before,
.package-card:hover::before,
.category-card:hover::before,
.guide-card:hover::before,
.tip-card:hover::before,
.method-card:hover::before,
.department-card:hover::before,
.value-card:hover::before,
.resource-card:hover::before {
  height: 100%;
}

.feature-card h3,
.service-card h3,
.product-card h3,
.benefit-card h3,
.industry-card h3,
.package-card h3,
.category-card h3,
.guide-card h3,
.tip-card h3,
.method-card h3,
.department-card h3,
.value-card h3,
.resource-card h3 {
  color: #c9a961;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card p,
.service-card p,
.product-card p,
.benefit-card p,
.industry-card p,
.package-card p,
.category-card p,
.guide-card p,
.tip-card p,
.method-card p,
.department-card p,
.value-card p,
.resource-card p {
  color: #9ca3af;
  line-height: 1.6;
}

/* Price Styling */
.price {
  font-size: 28px;
  font-weight: 700;
  color: #c9a961;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.specs {
  font-size: 14px;
  color: #6b7280;
  margin: 16px 0;
  padding: 12px;
  background: rgba(107, 114, 128, 0.1);
  border-left: 3px solid #6b7280;
}

/* Testimonial Cards */
.testimonial-card {
  background: #e5e7eb;
  color: #1a1a1a;
  border: none;
  padding: 32px;
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

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

.testimonial-card .author {
  color: #1a1a1a;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #c9a961;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 20px;
  text-align: center;
}

.stat-card {
  background: transparent;
  border: 2px solid #c9a961;
  padding: 40px 20px;
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #c9a961;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.stat-card p {
  color: #9ca3af;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 40px auto;
}

.text-section h2,
.text-section h3 {
  color: #e5e7eb;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 20px;
  color: #9ca3af;
  line-height: 1.8;
}

.text-section ul,
.text-section ol {
  margin: 20px 0 20px 20px;
  color: #9ca3af;
}

.text-section li {
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
  list-style: none;
}

.text-section li::before {
  content: '▸';
  position: absolute;
  left: -12px;
  color: #c9a961;
  font-weight: 700;
}

/* FAQ Section */
.faq {
  background: #0a0a0a;
  padding: 60px 20px;
}

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

.faq-item {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #c9a961;
  transform: translateX(4px);
}

.faq-item h3 {
  color: #c9a961;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #9ca3af;
  line-height: 1.6;
}

/* Contact Form Placeholder */
.form-placeholder {
  background: #1a1a1a;
  border: 2px solid #3a3a3a;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
}

.form-placeholder p {
  color: #9ca3af;
  margin-bottom: 20px;
  padding: 12px;
  background: #0a0a0a;
  border-left: 3px solid #c9a961;
}

.form-placeholder .note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 32px;
}

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content img {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.thank-you h1 {
  color: #c9a961;
  margin-bottom: 20px;
}

.timeline {
  display: inline-block;
  margin: 24px 0;
  padding: 12px 24px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid #c9a961;
  color: #c9a961;
  font-weight: 600;
}

/* Footer */
footer {
  background: #1a1a1a;
  border-top: 3px solid #c9a961;
  padding: 60px 20px 20px;
  margin-top: 0;
}

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

.footer-info,
.footer-menu,
.footer-legal {
  flex: 1 1 250px;
}

.footer-info img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-info p,
.footer-menu p,
.footer-legal p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-menu h3,
.footer-legal h3 {
  color: #c9a961;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-menu a,
.footer-legal a {
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-menu a:hover,
.footer-legal a:hover {
  color: #c9a961;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid #3a3a3a;
  margin-top: 20px;
}

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

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid #c9a961;
  background: transparent;
  color: #c9a961;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #c9a961;
  color: #0a0a0a;
}

.cookie-btn.accept {
  background: #c9a961;
  color: #0a0a0a;
}

.cookie-btn.accept:hover {
  background: #b89651;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #1a1a1a;
  border: 2px solid #c9a961;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #0a0a0a;
  border-left: 3px solid #c9a961;
}

.cookie-category h3 {
  color: #e5e7eb;
  font-size: 16px;
  margin-bottom: 12px;
}

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

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

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

.cookie-toggle label {
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
}

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

/* Legal Content */
.legal-content {
  background: #0a0a0a;
  padding: 60px 20px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #c9a961;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #e5e7eb;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* Read Time Badge */
.read-time {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hours Styling */
.hours {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* Showroom Info */
.showroom-info {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background: #1a1a1a;
  border: 2px solid #3a3a3a;
}

.showroom-info p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.showroom-info strong {
  color: #c9a961;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .benefits-grid,
  .industries-grid,
  .packages-grid,
  .categories-grid,
  .guides-grid,
  .tips-grid,
  .methods-grid,
  .departments-grid,
  .values-grid,
  .stats-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .product-card,
  .testimonial-card,
  .benefit-card,
  .industry-card,
  .package-card,
  .category-card,
  .guide-card,
  .tip-card,
  .method-card,
  .department-card,
  .value-card,
  .stat-card,
  .step-card,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.service-card,
.product-card,
.benefit-card,
.industry-card,
.package-card,
.category-card,
.guide-card,
.tip-card,
.method-card,
.department-card,
.value-card,
.resource-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Prevent layout shifts */
.section {
  min-height: auto;
}

/* Ensure proper spacing */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none;
  }
}