/* ============================================
   WHISPERING GEAR - SCANDINAVIAN CLEAN DESIGN
   Modern, Minimalist, Premium Technology
   ============================================ */

/* CSS RESET & 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* SCANDINAVIAN CLEAN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

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

a {
  color: #3498DB;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2C3E50;
}

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

li {
  margin-bottom: 8px;
  color: #555;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

em {
  font-style: italic;
  color: #666;
}

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

/* HEADER & NAVIGATION */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #ECF0F1;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 70px;
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #3498DB;
  color: #FFFFFF;
  border-color: #3498DB;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(44, 62, 80, 0.15);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #3498DB;
  color: #FFFFFF;
}

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

.mobile-nav a {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #ECF0F1;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #3498DB;
  padding-left: 8px;
}

/* BUTTONS - SCANDINAVIAN MINIMALIST STYLE */
.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #3498DB;
  color: #FFFFFF;
  border-color: #3498DB;
}

.btn-primary:hover {
  background-color: #2C3E50;
  border-color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.2);
  color: #ECF0F1;
}

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

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

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

.btn:hover {
  background-color: #3498DB;
  color: #FFFFFF;
  border-color: #3498DB;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
  color: #2C3E50;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: #3498DB;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

/* PAGE HERO */
.page-hero {
  background-color: #ECF0F1;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.page-hero p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* ERROR PAGE HERO */
.error-hero {
  background-color: #ECF0F1;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #3498DB;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

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

/* VALUE PROPOSITION */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
  text-align: center;
}

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

.value-proposition > p {
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(52, 152, 219, 0.1);
}

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

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* SERVICES SECTIONS */
.services-preview, .services-list {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.services-preview h2, .services-list h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-preview > p {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  flex: 1 1 320px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  border-color: #3498DB;
  box-shadow: 0 12px 24px rgba(52, 152, 219, 0.1);
  transform: translateY(-4px);
}

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

.service-card p {
  color: #666;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #3498DB;
  margin-bottom: 0;
  margin-top: auto;
}

.service-item {
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #3498DB;
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.1);
}

.service-item h2 {
  color: #2C3E50;
  margin-bottom: 12px;
  text-align: left;
}

.service-item .price {
  font-size: 32px;
  font-weight: 700;
  color: #3498DB;
  margin-bottom: 16px;
  display: block;
}

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

.service-item li {
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.service-item li::marker {
  color: #3498DB;
}

/* TESTIMONIALS - HIGH CONTRAST FOR READABILITY */
.testimonials {
  padding: 60px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.12);
}

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

.testimonial-card .author {
  color: #3498DB;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

/* PRODUCT CATEGORIES */
.product-categories {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

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

.category-card {
  flex: 1 1 320px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(52, 152, 219, 0.1);
}

.category-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.category-card p {
  color: #666;
}

/* BLOG SECTIONS */
.blog-featured {
  padding: 60px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.08);
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #3498DB;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-article h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.featured-article p {
  color: #555;
  margin-bottom: 12px;
}

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

.blog-articles {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.article-card {
  flex: 1 1 280px;
  max-width: 380px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  border-color: #3498DB;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(52, 152, 219, 0.1);
}

.category {
  display: inline-block;
  background-color: #ECF0F1;
  color: #2C3E50;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p {
  color: #666;
  margin-bottom: 12px;
}

/* COMPANY SECTIONS */
.company-story, .mission-vision, .values, .location {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.company-story {
  background-color: #ECF0F1;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

.mission-vision {
  background-color: #FFFFFF;
}

.mission, .vision {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.values {
  background-color: #ECF0F1;
}

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

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

.location {
  background-color: #FFFFFF;
  text-align: center;
}

.location h2 {
  margin-bottom: 32px;
}

.location p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 16px;
}

/* CONTACT SECTIONS */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1 1 280px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
}

.contact-card h2 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-card p {
  color: #555;
  margin-bottom: 12px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
  text-align: center;
}

.contact-form-section h2 {
  margin-bottom: 16px;
}

.form-info {
  max-width: 700px;
  margin: 32px auto 0;
}

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

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

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

.faq-item {
  max-width: 800px;
  margin: 0 auto 32px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content p {
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto 48px;
  background-color: #FFFFFF;
  border: 2px solid #ECF0F1;
  border-radius: 12px;
  padding: 32px;
}

.legal-section h2 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 26px;
}

.legal-section h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-section p {
  margin-bottom: 16px;
}

/* CTA SECTIONS */
.cta-banner, .cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
  margin-bottom: 60px;
  text-align: center;
  border-radius: 12px;
}

.cta-banner h2, .cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p, .cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary, .cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #3498DB;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover, .cta-section .btn-primary:hover {
  background-color: #ECF0F1;
  color: #2C3E50;
  border-color: #ECF0F1;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
  text-align: center;
}

.location-info h2 {
  margin-bottom: 24px;
}

.location-info p {
  font-size: 17px;
  margin-bottom: 12px;
  color: #555;
}

/* SHOP BENEFITS */
.shop-benefits {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

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

.benefit-card {
  flex: 1 1 240px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #666;
}

/* ERROR & THANK YOU PAGES */
.error-details, .confirmation-details {
  padding: 40px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.error-details p, .confirmation-details p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 17px;
}

.confirmation-details ul {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
  list-style-position: inside;
}

.confirmation-details li {
  margin-bottom: 12px;
  color: #555;
}

.navigation-suggestions, .next-steps {
  padding: 60px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
}

.navigation-suggestions h2, .next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.suggestion-card {
  flex: 1 1 260px;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.1);
}

.suggestion-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #666;
  margin-bottom: 24px;
}

.contact-support {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-support h2 {
  margin-bottom: 16px;
}

.contact-support p {
  font-size: 17px;
  margin-bottom: 16px;
}

.thank-you-hero {
  padding: 80px 20px;
  background-color: #ECF0F1;
  margin-bottom: 60px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 16px rgba(39, 174, 96, 0.2);
}

.back-navigation {
  padding: 40px 20px;
  margin-bottom: 60px;
  text-align: center;
}

/* BLOG CTA */
.blog-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
  margin-bottom: 60px;
  text-align: center;
  border-radius: 12px;
}

.blog-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

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

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

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #BDC3C7;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-section a:hover {
  color: #3498DB;
}

.footer-bottom {
  border-top: 1px solid #34495E;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #95A5A6;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text p {
  margin: 0;
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.6;
}

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

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

#accept-all-cookies {
  background-color: #3498DB;
  color: #FFFFFF;
}

#accept-all-cookies:hover {
  background-color: #2980B9;
}

#reject-all-cookies {
  background-color: transparent;
  color: #ECF0F1;
  border: 2px solid #ECF0F1;
}

#reject-all-cookies:hover {
  background-color: #34495E;
}

#cookie-settings {
  background-color: transparent;
  color: #3498DB;
  border: 2px solid #3498DB;
}

#cookie-settings:hover {
  background-color: #3498DB;
  color: #FFFFFF;
}

/* COOKIE PREFERENCES MODAL */
#cookie-preferences-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 10000;
  padding: 24px;
  overflow-y: auto;
}

#cookie-preferences-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #95A5A6;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C3E50;
}

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

.cookie-preference-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ECF0F1;
}

.cookie-preference-item:last-child {
  border-bottom: none;
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-preference-header h3 {
  color: #2C3E50;
  margin: 0;
  font-size: 18px;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BDC3C7;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #3498DB;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #95A5A6;
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-preference-item p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

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

#save-cookie-preferences {
  background-color: #3498DB;
  color: #FFFFFF;
}

#save-cookie-preferences:hover {
  background-color: #2980B9;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }
  
  /* Hero section adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Grid adjustments */
  .value-grid,
  .services-grid,
  .category-grid,
  .article-grid,
  .values-grid,
  .contact-grid,
  .benefits-grid,
  .suggestion-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .category-card,
  .article-card,
  .contact-card,
  .benefit-card,
  .suggestion-card {
    max-width: 100%;
  }
  
  /* Testimonial cards on mobile */
  .testimonial-card {
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-banner-buttons button {
    width: 100%;
  }
  
  /* Cookie modal mobile */
  .cookie-modal-content {
    padding: 32px 24px;
    margin: 0;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Service items on mobile */
  .service-item {
    padding: 24px;
  }
  
  .featured-article {
    padding: 32px 24px;
  }
  
  /* Error code size on mobile */
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .category-card,
  .article-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .footer-section {
    flex: 1 1 calc(50% - 24px);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

/* SMOOTH TRANSITIONS */
* {
  transition-property: background-color, border-color, color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #3498DB;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #3498DB;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent-banner {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}