/* ============================================
   AIROPURE - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* CSS RESET & BASE */
* {
  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;
  font-size: 16px;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* TYPOGRAPHY - INDUSTRIAL MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E0E0E0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

p {
  margin-bottom: 16px;
  color: #B0B0B0;
}

a {
  color: #17A2A2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2B7A78;
}

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

ul {
  list-style: none;
}

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

/* HEADER & NAVIGATION - INDUSTRIAL STYLE */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(23, 162, 162, 0.1);
  border-bottom: 2px solid #17A2A2;
}

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

.logo img {
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(23, 162, 162, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 15px rgba(23, 162, 162, 0.6));
}

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

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

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #17A2A2, #2B7A78);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #17A2A2;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(23, 162, 162, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5), 0 0 30px rgba(23, 162, 162, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #2A2A2A 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #17A2A2;
}

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

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

.mobile-menu-close:hover {
  background: #17A2A2;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B0B0B0;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 162, 162, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #17A2A2;
  padding-left: 10px;
  border-bottom-color: #17A2A2;
}

/* BUTTONS - INDUSTRIAL STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(23, 162, 162, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2B7A78, #1A4948);
  box-shadow: 0 6px 16px rgba(23, 162, 162, 0.5);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(23, 162, 162, 0.1);
  border-color: #2B7A78;
  color: #2B7A78;
}

/* HERO SECTION - INDUSTRIAL AESTHETIC */
.hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(23, 162, 162, 0.03) 10px,
    rgba(23, 162, 162, 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: #E0E0E0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 20px;
  color: #B0B0B0;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-badges span {
  padding: 10px 20px;
  background: rgba(23, 162, 162, 0.1);
  border: 1px solid rgba(23, 162, 162, 0.3);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #17A2A2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS - INDUSTRIAL SPACING */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subheadline {
  text-align: center;
  color: #909090;
  font-size: 18px;
  margin-bottom: 40px;
}

/* BENEFITS BAR */
.benefits-bar {
  background: linear-gradient(135deg, #1A4948 0%, #2B7A78 100%);
  padding: 40px 20px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.benefit-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item p {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* PRODUCT SHOWCASE */
.product-showcase {
  background: #1A1A1A;
  text-align: center;
}

.product-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.product-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 30px;
  border-radius: 8px;
  border: 2px solid #3A3A3A;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #17A2A2, #2B7A78);
  border-radius: 8px 8px 0 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(23, 162, 162, 0.3);
  border-color: #17A2A2;
}

.product-card h3 {
  color: #E0E0E0;
  margin-bottom: 12px;
  font-size: 20px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: #17A2A2;
  margin-bottom: 16px;
}

.product-card p {
  color: #909090;
  font-size: 14px;
  line-height: 1.6;
}

/* FEATURES GRID */
.features-grid {
  background: #2A2A2A;
}

.features-grid h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.feature-card {
  flex: 1;
  min-width: 250px;
  background: #1A1A1A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  border-color: #17A2A2;
  box-shadow: 0 8px 20px rgba(23, 162, 162, 0.2);
}

.feature-card h3 {
  color: #17A2A2;
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card p {
  color: #909090;
  font-size: 14px;
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #E8E8E8;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #17A2A2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: left;
  margin-bottom: 20px;
}

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

.testimonial-author {
  color: #1A4948;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-score {
  color: #17A2A2;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #17A2A2 0%, #2B7A78 100%);
  padding: 60px 20px;
  text-align: center;
}

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

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

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

/* FOOTER - INDUSTRIAL STYLE */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #17A2A2;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(23, 162, 162, 0.3));
}

.footer-section h3 {
  color: #17A2A2;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
  color: #909090;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-section a {
  color: #909090;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #17A2A2;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #3A3A3A;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-top: 2px solid #17A2A2;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: #B0B0B0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #2B7A78, #1A4948);
}

.cookie-reject {
  background: transparent;
  color: #909090;
  border-color: #3A3A3A;
}

.cookie-reject:hover {
  border-color: #17A2A2;
  color: #17A2A2;
}

.cookie-settings {
  background: transparent;
  color: #17A2A2;
  border-color: #17A2A2;
}

.cookie-settings:hover {
  background: rgba(23, 162, 162, 0.1);
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #707070;
}

.breadcrumbs a {
  color: #17A2A2;
}

.breadcrumbs a:hover {
  color: #2B7A78;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 60px 20px;
  text-align: center;
}

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

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

/* PRODUCT GRID DETAILED */
.product-grid-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
  color: #FFFFFF;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
}

.product-features li {
  color: #B0B0B0;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #17A2A2;
  font-weight: 700;
}

/* VALUE PROPOSITIONS */
.value-propositions {
  background: #1A1A1A;
}

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

.proposition-card {
  flex: 1;
  min-width: 250px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  text-align: center;
  margin-bottom: 20px;
}

.proposition-card h3 {
  color: #17A2A2;
  margin-bottom: 12px;
}

.proposition-card p {
  color: #909090;
  font-size: 14px;
}

/* STATS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-item,
.stat-card {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border-radius: 8px;
  border: 2px solid #3A3A3A;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #17A2A2;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(23, 162, 162, 0.4);
}

.stat-item p:last-child,
.stat-card p:last-child {
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTENT SECTIONS */
.mission-vision,
.why-choose-us,
.problem-awareness,
.health-benefits,
.target-groups {
  background: #1A1A1A;
}

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

.mission-block,
.vision-block,
.values-block {
  margin-bottom: 40px;
  padding: 30px;
  background: #2A2A2A;
  border-radius: 8px;
  border-left: 4px solid #17A2A2;
}

.values-block ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.values-block li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
}

.values-block li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #17A2A2;
  font-weight: 700;
}

/* GRIDS */
.reasons-grid,
.problems-grid,
.benefits-grid,
.groups-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.reason-card,
.problem-card,
.benefit-card,
.group-card {
  flex: 1;
  min-width: 250px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  margin-bottom: 20px;
}

.reason-card h3,
.problem-card h3,
.benefit-card h3,
.group-card h3 {
  color: #17A2A2;
  margin-bottom: 12px;
  font-size: 18px;
}

.reason-card p,
.problem-card p,
.benefit-card p,
.group-card p {
  color: #909090;
  font-size: 14px;
}

/* BLOG & ARTICLES */
.featured-article {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #17A2A2;
  margin-bottom: 40px;
  position: relative;
}

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

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

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

.article-card {
  flex: 1;
  min-width: 280px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: #17A2A2;
  transform: translateY(-4px);
}

.article-card h3 {
  color: #E0E0E0;
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.method-card {
  flex: 1;
  min-width: 280px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  text-align: center;
  margin-bottom: 20px;
}

.method-card h3 {
  color: #17A2A2;
  margin-bottom: 16px;
}

.method-value {
  font-size: 22px;
  font-weight: 700;
  color: #E0E0E0;
  margin-bottom: 12px;
}

.showroom-details,
.showroom-info {
  background: #2A2A2A;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #17A2A2;
  margin-top: 30px;
}

.showroom-details h3,
.showroom-info h3 {
  color: #17A2A2;
  margin: 24px 0 12px;
}

.showroom-details ul,
.showroom-info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.showroom-details li,
.showroom-info li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
}

.showroom-details li::before,
.showroom-info li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #17A2A2;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #2A2A2A;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #17A2A2;
}

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

.faq-item p {
  color: #909090;
  font-size: 14px;
}

/* LEGAL PAGES */
.legal-content {
  background: #1A1A1A;
}

.legal-content h2 {
  color: #17A2A2;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content p {
  color: #B0B0B0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #17A2A2;
  text-decoration: underline;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
}

.right-card {
  flex: 1;
  min-width: 250px;
  background: #2A2A2A;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  margin-bottom: 20px;
}

.right-card h3 {
  color: #17A2A2;
  margin-bottom: 12px;
}

.right-card p {
  color: #909090;
  font-size: 14px;
}

/* COOKIES TABLE */
.cookies-table {
  background: #1A1A1A;
}

.cookies-table table {
  width: 100%;
  background: #2A2A2A;
  border-radius: 8px;
  overflow: hidden;
  border-collapse: collapse;
}

.cookies-table thead {
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
}

.cookies-table th {
  padding: 16px;
  text-align: left;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.cookies-table td {
  padding: 16px;
  border-bottom: 1px solid #3A3A3A;
  color: #B0B0B0;
  font-size: 14px;
}

.cookies-table tbody tr:hover {
  background: rgba(23, 162, 162, 0.05);
}

/* ERROR PAGE */
.error-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #17A2A2;
  text-shadow: 0 0 30px rgba(23, 162, 162, 0.5);
  margin-bottom: 20px;
}

.error-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.page-link-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.page-link-card:hover {
  border-color: #17A2A2;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(23, 162, 162, 0.2);
}

.page-link-card h3 {
  color: #E0E0E0;
  margin-bottom: 8px;
}

.page-link-card p {
  color: #909090;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #17A2A2, #2B7A78);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(23, 162, 162, 0.4);
}

.steps-grid,
.alternatives-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card,
.alternative-card,
.suggestion-card {
  flex: 1;
  min-width: 250px;
  background: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A3A3A;
  text-align: center;
  margin-bottom: 20px;
}

.time {
  color: #17A2A2;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .benefits-grid,
  .product-grid,
  .features,
  .testimonial-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .product-card,
  .feature-card,
  .testimonial-card {
    max-width: 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

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

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

.hero-content,
.product-card,
.feature-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #17A2A2;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #17A2A2;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}