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

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

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

ul, ol {
  list-style-position: inside;
}

/* =========================================
   PLAYFUL DYNAMIC TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A3A6B;
}

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 36px;
  animation: slideInLeft 0.6s ease-out;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

strong {
  font-weight: 700;
  color: #1A3A6B;
}

/* =========================================
   PLAYFUL ANIMATIONS
   ========================================= */

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-30px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

/* =========================================
   CONTAINER & LAYOUT
   ========================================= */

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

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

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

header {
  background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.15);
  animation: slideInDown 0.5s ease-out;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(-3deg);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.header-cta {
  display: flex;
  gap: 12px;
}

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #FF8C5A;
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1A3A6B 0%, #2C5AA0 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-menu-close:hover {
  background: #fff;
  color: #1A3A6B;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   BUTTONS - PLAYFUL & ENERGETIC
   ========================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.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.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  animation: pulse 0.5s ease;
}

.btn-secondary {
  background: #fff;
  color: #FF6B35;
  border: 3px solid #FF6B35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-secondary:hover {
  background: #FF6B35;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-tertiary {
  background: linear-gradient(135deg, #2C5AA0 0%, #1A3A6B 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 58, 107, 0.3);
}

.btn-tertiary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.4);
}

/* =========================================
   HERO SECTION - ENERGETIC
   ========================================= */

.hero {
  background: linear-gradient(135deg, #2C5AA0 0%, #1A3A6B 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 90, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

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

.hero h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #FF8C5A;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.hero-text {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 140, 90, 0.8);
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================
   PAGE HERO
   ========================================= */

.page-hero {
  background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

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

.page-hero p, .page-hero .lead {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================
   CARD LAYOUTS - FLEXBOX ONLY
   ========================================= */

.card-container, .services-grid, .problems-grid, .benefits-grid, 
.testimonial-grid, .tech-features, .features-list, .categories-grid,
.materials-grid, .innovations-grid, .methods-grid, .areas-grid,
.cert-grid, .metrics-grid, .reviews-grid, .advantages-grid,
.partners-list, .values-grid, .team-members, .cert-list,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.card, .service-card, .problem-item, .benefit-item, .testimonial-card,
.feature, .feature-item, .category-card, .material-item, .innovation-item,
.method-card, .area-card, .cert-item, .metric-card, .review-platform,
.advantage, .partner, .value-card, .team-member, .suggestion-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.1);
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.card:hover, .service-card:hover, .problem-item:hover, 
.benefit-item:hover, .category-card:hover, .value-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25);
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.service-card img, .problem-item img, .benefit-item img,
.feature img, .category-card img, .value-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: float 3s ease-in-out infinite;
}

.service-card:hover img, .problem-item:hover img {
  animation: wiggle 0.5s ease;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin: 20px 0;
  display: block;
}

/* =========================================
   TESTIMONIALS - READABLE
   ========================================= */

.testimonials {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe6d9 100%);
  padding: 60px 20px;
  margin: 60px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1A3A6B;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 5px solid #FF8C5A;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: #1A3A6B;
  font-size: 18px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.rating {
  color: #FFB800;
  font-size: 20px;
  letter-spacing: 2px;
}

/* =========================================
   STATS & METRICS
   ========================================= */

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 48px;
  color: #FF8C5A;
  display: block;
  font-weight: 700;
}

.stat span {
  font-size: 16px;
  color: #2d3748;
}

.metrics-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric strong {
  font-size: 36px;
  color: #FF8C5A;
  font-weight: 700;
}

/* =========================================
   PROCESS & TIMELINE
   ========================================= */

.process-steps, .timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step, .timeline-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover, .timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-item strong {
  display: block;
  font-size: 24px;
  color: #FF6B35;
  margin-bottom: 10px;
}

/* =========================================
   TEXT + IMAGE SECTIONS
   ========================================= */

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

.text-image-section > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
}

/* =========================================
   SPECIAL SECTIONS
   ========================================= */

.urgency-cta, .emergency-section {
  background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.urgency-cta h2, .emergency-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.warning {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  margin: 20px auto;
  max-width: 700px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #2C5AA0 0%, #1A3A6B 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

/* =========================================
   CONTACT SECTIONS
   ========================================= */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(26, 58, 107, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.contact-method img {
  width: 50px;
  height: 50px;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.1);
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #1A3A6B;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid #FF8C5A;
}

.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* =========================================
   THANK YOU PAGE
   ========================================= */

.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  animation: bounceIn 0.8s ease-out;
}

.next-steps {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.1);
  margin: 40px 0;
  text-align: left;
}

.next-steps ol {
  margin-left: 20px;
}

.next-steps li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: linear-gradient(135deg, #1A3A6B 0%, #0d1f3d 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-column h4 {
  color: #FF8C5A;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3A6B 0%, #2C5AA0 100%);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

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

.cookie-accept {
  background: #FF8C5A;
  color: #fff;
}

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

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

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

.cookie-settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #FF8C5A;
}

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

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

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: bounceIn 0.5s ease-out;
}

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

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

.cookie-category {
  padding: 20px;
  margin: 20px 0;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #FF8C5A;
}

.cookie-category h3 {
  color: #1A3A6B;
  margin-bottom: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #FF8C5A;
}

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

.toggle-switch.active::after {
  transform: translateX(30px);
}

/* =========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================= */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .card, .service-card, .problem-item, .benefit-item,
  .category-card, .value-card, .team-member {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step, .timeline-item {
    flex: 1 1 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .contact-method {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card, .service-card, .problem-item, .benefit-item,
  .category-card, .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

.text-center {
  text-align: center;
}

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

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

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

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

.highlight {
  background: linear-gradient(135deg, #FFE6D9 0%, #FFF5F0 100%);
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #FF8C5A;
  font-weight: 700;
  margin: 20px 0;
}

/* =========================================
   PRINT STYLES
   ========================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}