/* 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', Arial, sans-serif;
  color: #2d3748;
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

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

a:hover {
  color: #E67E22;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5F8D;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background: #F8F9FA;
  border-radius: 8px;
  color: #2C5F8D;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: #2C5F8D;
  color: #ffffff;
  border-left-color: #E67E22;
  transform: translateX(8px);
}

/* Header */
header {
  background: #ffffff;
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

.main-nav a {
  color: #2d3748;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #718096;
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #2C5F8D;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background: #1e4d73;
  border-color: #1e4d73;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 95, 141, 0.2);
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
}

/* Problem Solution Section */
.problem-solution {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 60px 40px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 32px;
}

.problem-list {
  max-width: 600px;
  margin: 0 auto 40px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-solution h3 {
  text-align: center;
  color: #E67E22;
  margin-bottom: 16px;
}

.problem-solution > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(44, 95, 141, 0.15);
}

.feature-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.feature-card p {
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.benefit-item {
  background: #F8F9FA;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-item p {
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

/* Services Grid */
.services-grid {
  margin-top: 40px;
  text-align: center;
}

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

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(44, 95, 141, 0.15);
}

.service-card.highlight {
  border-color: #E67E22;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.service-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.service-card p {
  color: #4a5568;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E67E22;
  margin: 16px 0;
}

.service-card .old-price {
  font-size: 18px;
  color: #a0aec0;
  text-decoration: line-through;
  margin-left: 8px;
}

.service-card .features {
  font-size: 14px;
  color: #718096;
  margin: 16px 0;
}

.service-card .savings {
  font-size: 14px;
  color: #38a169;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E67E22;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

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

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

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2C5F8D;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: #2d3748;
  line-height: 1.7;
  margin: 0;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 8px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4d73 100%);
  color: #ffffff;
  padding: 80px 40px;
  border-radius: 16px;
  text-align: center;
}

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

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

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

.cta-banner .btn-primary {
  background: #E67E22;
  border-color: #E67E22;
}

.cta-banner .btn-primary:hover {
  background: #d67019;
  border-color: #d67019;
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-banner .btn-secondary:hover {
  background: #ffffff;
  color: #2C5F8D;
}

.guarantee {
  font-size: 14px;
  color: #cbd5e0;
  margin-top: 16px;
}

/* Lifehacks Grid */
.lifehacks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.lifehack-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #E67E22;
}

.lifehack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 141, 0.15);
}

.lifehack-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

/* Category Intro */
.category-intro {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

.category-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.category-intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.key-benefits {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
}

.key-benefits li {
  padding: 12px 0;
  color: #4a5568;
  font-weight: 600;
}

/* Content Preview */
.content-preview {
  padding: 60px 40px;
}

.content-preview h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cta-text {
  text-align: center;
  font-size: 18px;
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 40px;
}

/* Benefits Detailed */
.benefits-detailed {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

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

.benefit-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(44, 95, 141, 0.15);
}

.benefit-card h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

/* Service Offer */
.service-offer {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
}

.service-offer h2 {
  margin-bottom: 24px;
}

.price-highlight {
  margin: 32px 0;
}

.price-highlight .price {
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
}

.inclusions {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inclusions li {
  padding: 12px 0;
  color: #4a5568;
}

/* About Page */
.about-story,
.mission-vision,
.values {
  padding: 60px 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.mission,
.vision {
  background: #F8F9FA;
  padding: 40px;
  border-radius: 12px;
  flex: 1 1 400px;
  max-width: 550px;
}

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

.value-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #2C5F8D;
}

.value-card h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4d73 100%);
  padding: 80px 40px;
  border-radius: 16px;
}

.stats h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 600;
}

/* Contact Page */
.contact-methods {
  padding: 60px 40px;
}

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

.contact-method {
  background: #F8F9FA;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
}

.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-info {
  font-weight: 600;
  color: #2d3748;
  margin: 16px 0;
}

/* Form Styling */
.contact-form-section {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.input-field,
.textarea-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #2C5F8D;
  box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-field {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  margin-bottom: 24px;
  text-align: center;
}

/* Business Hours */
.business-hours {
  padding: 60px 40px;
}

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

.hours-item {
  background: #F8F9FA;
  padding: 24px 32px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.hours-note {
  text-align: center;
  color: #718096;
  font-size: 14px;
}

/* Location */
.location {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

.location-info {
  text-align: center;
  margin: 32px 0;
}

.location-info p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.directions {
  max-width: 600px;
  margin: 32px auto 0;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
}

.directions h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.visit-note {
  color: #E67E22;
  font-weight: 600;
  margin-top: 24px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 40px;
}

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  color: #2C5F8D;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content .intro {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 32px;
}

.last-updated {
  color: #718096;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* Thank You Page */
.success-message {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #38a169;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.confirmation-message {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

.confirmation-steps {
  max-width: 700px;
  margin: 32px auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
}

.confirmation-steps li {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.confirmation-steps li:last-child {
  border-bottom: none;
}

.note {
  text-align: center;
  color: #E67E22;
  font-weight: 600;
  margin-top: 24px;
}

.next-steps {
  padding: 60px 40px;
}

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

.suggestion-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Value Proposition */
.value-proposition {
  background: #F8F9FA;
  padding: 60px 40px;
  border-radius: 16px;
}

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

/* Contact Preview */
.contact-preview {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
}

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

.contact-preview p {
  margin-bottom: 32px;
}

.contact-preview .contact-info {
  max-width: 500px;
  margin: 32px auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: left;
}

/* Footer */
footer {
  background: #1a202c;
  color: #e2e8f0;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-section p {
  color: #cbd5e0;
  font-size: 14px;
}

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

.footer-nav a {
  color: #cbd5e0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E67E22;
  padding-left: 8px;
}

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

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

.legal-nav a {
  color: #cbd5e0;
  font-size: 14px;
}

.legal-nav a:hover {
  color: #E67E22;
}

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

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a202c;
  color: #e2e8f0;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #cbd5e0;
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: #E67E22;
  color: #ffffff;
  border-color: #E67E22;
}

.cookie-btn-accept:hover {
  background: #d67019;
  border-color: #d67019;
}

.cookie-btn-reject {
  background: transparent;
  color: #cbd5e0;
  border-color: #4a5568;
}

.cookie-btn-reject:hover {
  background: #4a5568;
  color: #ffffff;
}

.cookie-btn-settings {
  background: transparent;
  color: #cbd5e0;
  border-color: #cbd5e0;
}

.cookie-btn-settings:hover {
  background: #cbd5e0;
  color: #1a202c;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: #2C5F8D;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #718096;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #2d3748;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e0;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #38a169;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids to single column */
  .features-grid,
  .benefits-grid,
  .services-wrapper,
  .testimonials-grid,
  .lifehacks-grid,
  .contact-grid,
  .hours-grid,
  .suggestions-grid,
  .values-grid,
  .stats-grid,
  .mission-vision-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .lifehack-card,
  .contact-method,
  .suggestion-card,
  .value-card,
  .stat-card,
  .benefit-card,
  .mission,
  .vision {
    max-width: 100%;
    width: 100%;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 60px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  .legal-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .main-nav {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 13px;
  }
}

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

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

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .cta-banner,
  .btn {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}
.services-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}