/* 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: #2C3E50;
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  overflow-x: hidden;
}

/* Typography - Playful & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px #F57C00;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1B5E20, #F57C00);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1B5E20;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

a:hover {
  color: #F57C00;
  transform: scale(1.05);
}

ul {
  list-style: none;
}

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

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

/* Header - Playful & Energetic */
header {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: rotate(-5deg) scale(1.1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #F57C00;
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #F57C00;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #E65100;
  transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 80px 40px 40px;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F57C00;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: #F57C00;
  transform: translateX(10px);
}

/* Buttons - Playful & Dynamic */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #F57C00 0%, #FF9800 100%);
  color: #FFFFFF;
  border-color: #F57C00;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E65100 0%, #F57C00 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #1B5E20;
  border-color: #1B5E20;
  border-width: 3px;
}

.btn-secondary:hover {
  background: #1B5E20;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

/* Hero Section - Energetic */
.hero {
  background: linear-gradient(135deg, #FFD54F 0%, #FFA726 50%, #FF6F00 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

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

.hero h1 {
  color: #1B5E20;
  font-size: 56px;
  text-shadow: 4px 4px 0px #FFFFFF, 8px 8px 0px #F57C00;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 32px;
  font-weight: 600;
}

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

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1B5E20;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 40px;
  font-weight: 600;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Benefits Grid - Playful Cards */
.benefits {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.benefit-card {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.3);
  border: 4px solid #F57C00;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.2) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.5);
}

.benefit-card:hover::before {
  top: 0;
  right: 0;
}

.benefit-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #2C3E50;
  position: relative;
  z-index: 1;
}

/* Services Grid */
.services-preview {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid,
.products-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.product-card,
.package-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.2);
  border: 3px solid #2E7D32;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover,
.product-card:hover,
.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.4);
  border-color: #F57C00;
}

.service-card h3,
.product-card h3,
.package-card h3 {
  color: #1B5E20;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #F57C00;
  margin: 16px 0;
  text-shadow: 2px 2px 0px rgba(245, 124, 0, 0.2);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.features li {
  padding-left: 24px;
  position: relative;
  color: #2C3E50;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: 800;
  font-size: 20px;
}

.package-card.featured {
  border-color: #F57C00;
  border-width: 5px;
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  transform: scale(1.05);
}

/* Testimonials - High Contrast */
.testimonials {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #F57C00, #FFA726);
  left: 50%;
  transform: translateX(-50%);
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #F57C00;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.5);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #2C3E50;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author,
.author {
  font-weight: 700;
  color: #1B5E20;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.rating {
  font-size: 20px;
  margin-top: 12px;
  color: #FFA726;
}

.testimonial-card.featured {
  border-color: #F57C00;
  border-width: 5px;
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
}

/* Stats */
.stats {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 20px;
  border-radius: 20px;
  margin-top: 40px;
}

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

.stat,
.stat-card {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat:hover,
.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 124, 0, 0.4);
}

.stat strong,
.stat-card strong {
  display: block;
  font-size: 48px;
  color: #F57C00;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(245, 124, 0, 0.2);
}

.stat span,
.stat-card span {
  display: block;
  font-size: 16px;
  color: #2C3E50;
  font-weight: 600;
}

/* CTA Section - Vibrant */
.cta-section {
  background: linear-gradient(135deg, #F57C00 0%, #FF9800 50%, #FFA726 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.trust-badges span {
  padding: 12px 24px;
  background: #FFFFFF;
  border-radius: 25px;
  font-weight: 700;
  color: #1B5E20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Footer - Playful */
footer {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #FFA726;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-col p {
  color: #E8F5E9;
  font-size: 16px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #E8F5E9;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: #FFA726;
  padding-left: 10px;
}

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

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

/* Process Steps */
.process {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.step,
.step-card {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.3);
  border: 3px solid #F57C00;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover,
.step-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 35px rgba(245, 124, 0, 0.5);
}

.step h3,
.step-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  font-size: 22px;
}

.step p,
.step-card p {
  color: #2C3E50;
}

/* Legal Content */
.legal-content {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.subtitle {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

.text-section {
  margin-bottom: 32px;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 20px 0;
  padding-left: 24px;
}

.text-section ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #2C3E50;
  line-height: 1.8;
}

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

/* Categories Grid */
.product-categories {
  background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.category-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(27, 94, 32, 0.3);
  border: 3px solid #2E7D32;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 10px 35px rgba(27, 94, 32, 0.5);
  border-color: #F57C00;
}

/* Features */
.features,
.compatibility,
.approach {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.features-grid,
.approach-grid,
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card,
.approach-card,
.tech-card {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(27, 94, 32, 0.2);
  border: 3px solid #2E7D32;
  transition: all 0.3s ease;
}

.feature-card:hover,
.approach-card:hover,
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(27, 94, 32, 0.4);
  border-color: #F57C00;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* Contact */
.contact-methods {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.contact-grid,
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card,
.office-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.3);
  border: 3px solid #F57C00;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover,
.office-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 10px 35px rgba(245, 124, 0, 0.5);
}

/* FAQ */
.faq-contact {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  padding: 24px;
  border-radius: 15px;
  border: 3px solid #F57C00;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.4);
}

.faq-item h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

/* Thank You */
.thank-you-hero {
  background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.confirmation,
.what-next,
.meanwhile,
.service-areas,
.business-info,
.office-info {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

/* Guarantees */
.guarantees,
.satisfaction-guarantee {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.guarantee-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(27, 94, 32, 0.2);
  border: 3px solid #2E7D32;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 35px rgba(27, 94, 32, 0.4);
  border-color: #F57C00;
}

/* Case Studies */
.case-studies {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.case-study {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #F57C00;
  margin-bottom: 24px;
}

.case-study h3 {
  color: #1B5E20;
  margin-bottom: 20px;
}

/* Before After */
.before-after {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.comparison-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(27, 94, 32, 0.2);
  border: 3px solid #2E7D32;
}

.before,
.after,
.savings {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0;
}

.before {
  color: #E53935;
}

.after {
  color: #43A047;
}

.savings {
  color: #F57C00;
  font-size: 24px;
}

/* Story, Values */
.story,
.detailed-process,
.technology,
.features-explained,
.savings-explained,
.app-features,
.compatibility-explained {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.values ul {
  margin-top: 20px;
  padding-left: 24px;
}

.values li {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  color: #2C3E50;
  font-size: 18px;
  font-weight: 600;
}

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

.total-savings {
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  color: #F57C00;
}

.response-time,
.expected-response,
.guarantee {
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  color: #1B5E20;
}

.rating-summary {
  text-align: center;
  font-size: 24px;
  color: #FFA726;
  margin-top: 16px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-consent.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 {
  color: #FFFFFF;
  flex: 1 1 300px;
  font-size: 16px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
}

.cookie-accept {
  background: #F57C00;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #E65100;
  transform: scale(1.05);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F57C00;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #E65100;
  transform: rotate(90deg);
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 12px;
  border: 2px solid #E0E0E0;
}

.cookie-category h3 {
  color: #1B5E20;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

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

.cookie-category.disabled {
  opacity: 0.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    text-shadow: 2px 2px 0px #F57C00;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
    text-shadow: 2px 2px 0px #FFFFFF, 4px 4px 0px #F57C00;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .service-card,
  .product-card,
  .package-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step,
  .step-card,
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .testimonial-card,
  .feature-card,
  .approach-card,
  .tech-card,
  .contact-card,
  .office-card,
  .guarantee-card,
  .comparison-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  .sections {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .mobile-menu {
    width: 90%;
  }
}

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

.benefit-card,
.service-card,
.product-card,
.testimonial-card,
.feature-card {
  animation: fadeIn 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Accessibility */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #F57C00;
  outline-offset: 2px;
}

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

  body {
    background: #FFFFFF;
  }

  .hero,
  .cta-section {
    background: #F5F5F5;
  }
}