/* ===================================
   PUFF INSTITUTE - CREATIVE ARTISTIC DESIGN
   Modern, Vibrant, Artistic Style
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #2d3436;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: #2d3436;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  color: #2d3436;
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

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

h3 {
  font-size: 24px;
  color: #2C5F8D;
}

h4 {
  font-size: 18px;
  color: #2d3436;
  font-weight: 700;
}

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

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

a:hover {
  color: #E67E22;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #E67E22;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
}

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

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

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

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

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: white;
  color: #764ba2;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  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, #2C5F8D, #1a3a5c);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #E67E22, #d35400);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-link {
  color: #2C5F8D;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E67E22, #f39c12);
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* CTA BUTTONS CONTAINER */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 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,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-indicators span {
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: white;
}

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

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

/* FEATURED REVIEWS */
.featured-reviews {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.review-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-rating {
  color: #f39c12;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-date {
  color: #636e72;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 8px;
}

.pros-cons {
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  border-left: 4px solid #E67E22;
}

/* FEATURES */
.features {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

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

/* SERVICES */
.services {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.service-card:hover::before {
  top: -25%;
  left: -25%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
  position: relative;
  z-index: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #E67E22;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.premium-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 48px;
  border-radius: 20px;
  margin-top: 48px;
  color: white;
}

.premium-services h3 {
  color: white;
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
}

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

.premium-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.premium-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.premium-item strong {
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.premium-item span {
  font-size: 24px;
  font-weight: 800;
  color: #f39c12;
}

/* TESTIMONIALS */
.testimonials {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 20px;
  border-left: 6px solid #E67E22;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  color: rgba(230, 126, 34, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-card .rating {
  color: #f39c12;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: #2d3436;
  line-height: 1.8;
  font-size: 16px;
}

.author {
  font-weight: 700;
  color: #2C5F8D;
  font-style: normal;
  margin-top: 16px;
  font-size: 15px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stats h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
}

.stats h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 56px;
  color: white;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.95) 0%, rgba(26, 58, 92, 0.95) 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-final h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 24px;
}

.cta-final h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 40px;
}

/* CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.filters-sidebar {
  flex: 0 0 280px;
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}

.reviews-content {
  flex: 1;
  min-width: 300px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group label {
  display: block;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.results-count {
  font-weight: 600;
  color: #636e72;
  margin-bottom: 24px;
  font-size: 15px;
}

/* FILTERS */
.filters {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filters select {
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filters select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* COMPARISONS & GUIDES */
.comparisons-listing,
.guides-listing {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparisons-grid,
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.comparison-card,
.guide-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card:hover,
.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.meta {
  color: #636e72;
  font-size: 14px;
  font-weight: 600;
}

/* CATEGORY PILLS */
.category-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-pill {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.category-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2, #667eea);
}

/* CATEGORY TABS */
.category-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-tabs button {
  padding: 12px 24px;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tabs button.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
}

.category-tabs button:hover {
  border-color: #667eea;
  transform: translateY(-2px);
}

/* PAGINATION */
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 12px 20px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-weight: 700;
  color: #2d3436;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* TEXT CENTER */
.text-center {
  text-align: center;
  margin-top: 40px;
}

/* ABOUT PAGE */
.mission-vision,
.our-story,
.testing-process,
.independence {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

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

.content-block {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  border-left: 6px solid #E67E22;
  margin-bottom: 20px;
}

.values {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.values li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.values li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* TIMELINE */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  flex-wrap: wrap;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
  z-index: 1;
}

.timeline-item strong {
  flex: 0 0 120px;
  font-size: 28px;
  font-weight: 900;
  color: #667eea;
  text-align: right;
  padding-right: 60px;
}

.timeline-item p {
  flex: 1;
  min-width: 250px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-left: 60px;
  position: relative;
}

.timeline-item p::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid white;
}

/* PROCESS GRID */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* TRUST POINTS */
.trust-points {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.trust-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.trust-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* CONTACT PAGE */
.contact-options,
.contact-form-section,
.office-info,
.departments {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

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

.option-card,
.department-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover,
.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.option-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.note {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 24px;
  border-radius: 16px;
  margin-top: 32px;
  border-left: 6px solid #667eea;
  font-style: italic;
  font-weight: 600;
}

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

.form-note {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 32px;
  border: 3px solid #667eea;
  font-size: 18px;
}

.contact-topics {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 32px;
  border-radius: 20px;
}

.contact-topics ul {
  list-style: none;
  padding: 0;
}

.contact-topics li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 8px;
  background: white;
  border-radius: 12px;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-topics li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #E67E22;
  font-weight: 900;
  font-size: 18px;
}

.contact-topics li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.detail-item img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* LEGAL PAGES */
.legal-content {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.last-updated {
  font-style: italic;
  color: #636e72;
  font-size: 14px;
}

/* RIGHTS GRID */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.right-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.right-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cookies-table {
  overflow-x: auto;
  margin: 32px 0;
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.cookies-table th {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.cookies-table tr:hover {
  background: #f8f9fa;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  padding: 100px 40px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

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

.confirmation-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: white;
  color: #27ae60;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: popIn 0.5s ease-out;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.next-steps,
.explore-content {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
}

.step .step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.response-time {
  text-align: center;
  font-weight: 700;
  color: #E67E22;
  font-size: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
  border-radius: 12px;
}

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

.content-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.return-home {
  text-align: center;
  padding: 60px 40px;
}

/* FEATURED GUIDE */
.featured-guide {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.guide-featured {
  position: relative;
  padding: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 20px;
  border-left: 8px solid #E67E22;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* POPULAR CATEGORIES & GUIDE TYPES */
.popular-categories,
.guide-types,
.categories-quick {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

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

.category-card,
.type-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover,
.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card img,
.type-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.category-card:hover img,
.type-card:hover img {
  transform: scale(1.1) rotate(-5deg);
}

/* COMPARISON CTA & CONTACT CTA */
.comparison-cta,
.contact-cta {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.95) 0%, rgba(211, 84, 0, 0.95) 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.comparison-cta h2,
.contact-cta h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.comparison-cta h2::after,
.contact-cta h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.comparison-cta p,
.contact-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

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

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

.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-left: 0;
  position: relative;
}

.footer-column nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.footer-column nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E67E22;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.btn-accept-all {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
}

.btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-reject-all {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-settings {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-settings:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

.cookie-category {
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 4px solid #667eea;
}

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

.category-header h3 {
  margin: 0;
  color: #2d3436;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
}

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

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

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

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #27ae60, #229954);
}

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.modal-buttons button {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-save-preferences {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 44px; }
  
  .review-card,
  .feature-card,
  .service-card,
  .stat-card,
  .process-step {
    flex: 1 1 calc(50% - 20px);
  }
  
  .timeline-item strong {
    flex: 0 0 100px;
    padding-right: 40px;
  }
  
  .timeline-item p {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero { padding: 60px 20px; }
  
  .main-nav { display: none; }
  
  .mobile-menu-toggle { display: block; }
  
  section,
  .section { padding: 32px 16px; }
  
  .featured-reviews,
  .features,
  .services,
  .testimonials,
  .stats,
  .mission-vision,
  .our-story,
  .testing-process,
  .independence,
  .contact-options,
  .contact-form-section,
  .office-info,
  .departments,
  .legal-content,
  .comparisons-listing,
  .guides-listing,
  .popular-categories,
  .guide-types,
  .featured-guide,
  .next-steps,
  .explore-content {
    padding: 40px 24px;
  }
  
  .review-card,
  .feature-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .comparison-card,
  .guide-card,
  .process-step,
  .trust-item,
  .option-card,
  .department-card,
  .content-card,
  .category-card,
  .type-card,
  .right-card,
  .content-block,
  .premium-item,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .filters-sidebar {
    flex: 1 1 100%;
    position: static;
    margin-bottom: 32px;
  }
  
  .reviews-content {
    flex: 1 1 100%;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
  
  .timeline-item::before {
    left: 20px;
    transform: translateY(-50%);
  }
  
  .timeline-item strong {
    text-align: left;
    padding-right: 0;
  }
  
  .timeline-item p {
    margin-left: 0;
  }
  
  .timeline-item p::before {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .modal-content {
    padding: 32px 24px;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .logo img { height: 40px; }
  
  .btn { padding: 12px 24px; font-size: 14px; }
  
  .category-tabs button,
  .category-pill {
    font-size: 13px;
    padding: 10px 20px;
  }
}