/* ============================================
   RADIANT SPRING - CREATIVE ARTISTIC DESIGN
   Modern CSS with Creative Flair
   ============================================ */

/* === 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', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2D2D2D;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 50%, #FFF5F7 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* === CREATIVE TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #C91C5C;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-shadow: 3px 3px 0px rgba(245, 196, 0, 0.3);
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

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

h3 {
  font-size: 24px;
  color: #8B1342;
}

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

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

/* === HEADER === */
header {
  background: linear-gradient(135deg, #FF6B9D 0%, #C91C5C 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(201, 28, 92, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 5px solid #F5C400;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

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

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

/* === NAVIGATION === */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 25px;
  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: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B9D 0%, #C91C5C 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  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: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

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

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(201, 28, 92, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(245,196,0,0.1)" d="M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.15) 0%, transparent 70%);
  animation: pulse 8s 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;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  color: #FFE8ED;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  color: white;
  font-size: 18px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* === BUTTONS === */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.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, #F5C400 0%, #FFD700 100%);
  color: #2D2D2D;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 196, 0, 0.5);
}

.btn-secondary {
  background: white;
  color: #C91C5C;
  border: 3px solid #C91C5C;
}

.btn-secondary:hover {
  background: #C91C5C;
  color: white;
  transform: translateY(-3px);
}

/* === SECTIONS === */
section {
  padding: 80px 20px;
  position: relative;
}

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

/* === TRUST BAR === */
.trust-bar {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 60px 20px;
  border-top: 5px solid #F5C400;
  border-bottom: 5px solid #FF6B9D;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(201, 28, 92, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.stat-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.25);
  border-color: #F5C400;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C91C5C;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 2px 2px 0px rgba(245, 196, 0, 0.3);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === FEATURES === */
.features {
  background: white;
  position: relative;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  flex: 1 1 250px;
  max-width: 280px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(245, 196, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 40px rgba(201, 28, 92, 0.25);
  border-color: #FF6B9D;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  margin-bottom: 15px;
  color: #C91C5C;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* === SERVICES === */
.services-overview {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 50%, #FFE8ED 100%);
  padding: 80px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 20px;
}

.services-overview > .container > p {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  flex: 1 1 300px;
  max-width: 360px;
  border-left: 6px solid #F5C400;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(201, 28, 92, 0.2);
  border-left-color: #FF6B9D;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #C91C5C;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #F5C400;
  text-shadow: 2px 2px 0px rgba(201, 28, 92, 0.2);
  font-family: 'Quicksand', sans-serif;
  margin-top: 15px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: white;
  padding: 80px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  flex: 1 1 450px;
  max-width: 550px;
  border-top: 5px solid #FF6B9D;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(245, 196, 0, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(201, 28, 92, 0.2);
}

.rating {
  color: #F5C400;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #FFE8ED;
}

.author strong {
  color: #C91C5C;
  font-size: 16px;
}

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

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, #C91C5C 0%, #8B1342 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(245,196,0,0.1)"/><circle cx="1100" cy="500" r="100" fill="rgba(255,107,157,0.1)"/><circle cx="600" cy="300" r="120" fill="rgba(245,196,0,0.05)"/></svg>');
  background-size: cover;
}

.newsletter h2 {
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.newsletter h2::after {
  background: #F5C400;
}

.newsletter p {
  color: #FFE8ED;
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border: 3px solid white;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
}

.email-input:focus {
  border-color: #F5C400;
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.3);
  transform: scale(1.02);
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: white;
  padding: 60px 20px 20px;
  border-top: 5px solid #F5C400;
}

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

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

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

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

.footer-nav a {
  color: #CCC;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
}

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

.footer-column p {
  color: #AAA;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #444;
  color: #999;
  font-size: 14px;
}

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 5px solid #F5C400;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #C91C5C;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #8B1342;
  text-decoration: underline;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: #666;
}

/* === REVIEWS PAGE === */
.reviews-content {
  padding: 60px 20px;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.filters-sidebar {
  flex: 0 0 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 120px;
  border-left: 5px solid #FF6B9D;
}

.filters-sidebar h3 {
  margin-bottom: 25px;
  color: #C91C5C;
  font-size: 22px;
}

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

.filter-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2D2D2D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.filter-select:focus,
.filter-select:hover {
  border-color: #FF6B9D;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.reviews-main {
  flex: 1 1 600px;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.review-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(201, 28, 92, 0.2);
}

.review-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.review-image-placeholder::before {
  content: '📦';
  font-size: 80px;
  opacity: 0.3;
}

.review-card h3 {
  padding: 20px 20px 10px;
  color: #C91C5C;
  font-size: 20px;
}

.review-card .rating {
  padding: 0 20px;
  font-size: 18px;
  margin-bottom: 8px;
}

.review-card .price {
  padding: 0 20px;
  font-size: 24px;
  margin-bottom: 12px;
}

.review-card p {
  padding: 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-card .btn {
  margin: 0 20px 20px;
  padding: 12px 24px;
  font-size: 14px;
}

/* === CTA SECTIONS === */
.cta-banner {
  background: linear-gradient(135deg, #F5C400 0%, #FFD700 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner h2 {
  color: #2D2D2D;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #C91C5C;
}

.cta-banner p {
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* === COMPARISONS PAGE === */
.comparisons-categories {
  padding: 60px 20px;
  background: white;
}

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

.category-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  cursor: pointer;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
  border-color: #FF6B9D;
}

.category-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
  transition: transform 0.3s ease;
}

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

.category-card h3 {
  font-size: 18px;
  color: #C91C5C;
}

/* === FEATURED COMPARISONS === */
.featured-comparisons {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 60px 20px;
}

.comparisons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.comparison-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.4s ease;
  border-top: 5px solid #F5C400;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(201, 28, 92, 0.2);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.comparison-card h3 {
  color: #C91C5C;
  margin-bottom: 10px;
}

.comparison-card p {
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

.comparison-card .btn {
  margin-top: 15px;
  align-self: flex-start;
}

/* === COMPARISON CRITERIA === */
.comparison-criteria {
  background: white;
  padding: 60px 20px;
}

.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.criterion-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.criterion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(201, 28, 92, 0.2);
  border-color: #F5C400;
}

.criterion-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.criterion-card h3 {
  font-size: 18px;
  color: #C91C5C;
}

.criterion-card p {
  color: #666;
  font-size: 14px;
}

/* === CTA SERVICES === */
.cta-services {
  background: linear-gradient(135deg, #C91C5C 0%, #8B1342 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-services h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-services h2::after {
  background: #F5C400;
}

.cta-services > p {
  color: #FFE8ED;
  font-size: 18px;
  margin-bottom: 40px;
}

.service-info {
  max-width: 600px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.service-info .price {
  color: #F5C400;
  font-size: 42px;
  margin-bottom: 20px;
}

.service-info ul {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.service-info ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding-left: 30px;
  position: relative;
}

.service-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F5C400;
  font-weight: 700;
  font-size: 18px;
}

/* === GUIDES PAGE === */
.guides-categories {
  padding: 60px 20px;
  background: white;
}

.guides-list {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 60px 20px;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.guide-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 320px;
  max-width: 450px;
  transition: all 0.3s ease;
  border-left: 6px solid #FF6B9D;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
  border-left-color: #F5C400;
}

.guide-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.guide-card p {
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

.reading-time {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

/* === AGE BASED GUIDES === */
.age-based-guides {
  background: white;
  padding: 60px 20px;
}

.age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.age-tab {
  padding: 14px 28px;
  background: white;
  border: 2px solid #E0E0E0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.age-tab:hover {
  border-color: #FF6B9D;
  color: #C91C5C;
  transform: translateY(-2px);
}

.age-tab.active {
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(201, 28, 92, 0.3);
}

.age-content {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.age-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.age-content ul li {
  padding: 18px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.age-content ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(201, 28, 92, 0.15);
  border-left-color: #FF6B9D;
}

.age-content ul li a {
  color: #2D2D2D;
  font-weight: 500;
}

.age-content ul li a:hover {
  color: #C91C5C;
}

/* === NEWSLETTER CTA === */
.newsletter-cta {
  background: linear-gradient(135deg, #F5C400 0%, #FFD700 100%);
  padding: 80px 20px;
  text-align: center;
}

.newsletter-cta h2 {
  color: #2D2D2D;
  margin-bottom: 20px;
}

.newsletter-cta h2::after {
  background: #C91C5C;
}

.newsletter-cta p {
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 40px;
}

/* === SERVICES PAGES === */
.services-hero {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #F5C400;
}

.services-hero h2 {
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card-large {
  background: white;
  padding: 45px 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border-left: 8px solid #F5C400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.service-card-large::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.service-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(201, 28, 92, 0.2);
  border-left-color: #FF6B9D;
}

.service-card-large img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.service-card-large h3 {
  color: #C91C5C;
  font-size: 28px;
}

.service-card-large > p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.price-tag {
  font-size: 38px;
  font-weight: 700;
  color: #F5C400;
  text-shadow: 2px 2px 0px rgba(201, 28, 92, 0.2);
  font-family: 'Quicksand', sans-serif;
}

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

.features-list li {
  padding-left: 30px;
  position: relative;
  color: #666;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B9D;
  font-weight: 700;
  font-size: 18px;
}

.delivery-time {
  color: #999;
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}

/* === FOR BRANDS === */
.for-brands {
  background: linear-gradient(135deg, #C91C5C 0%, #8B1342 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.for-brands h2 {
  color: white;
  margin-bottom: 20px;
}

.for-brands h2::after {
  background: #F5C400;
}

.for-brands > p {
  color: #FFE8ED;
  font-size: 18px;
  margin-bottom: 50px;
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: #F5C400;
}

.benefit-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(245, 196, 0, 0.5));
}

.benefit-item p {
  color: white;
  font-weight: 500;
}

/* === TESTIMONIALS CLIENTS === */
.testimonials-clients {
  background: white;
  padding: 80px 20px;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 15px;
}

.client-info strong {
  color: #C91C5C;
  font-size: 16px;
}

.client-info span {
  color: #999;
  font-size: 14px;
}

/* === CTA CONTACT === */
.cta-contact {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-contact h2 {
  margin-bottom: 20px;
}

.cta-contact p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* === ABOUT PAGE === */
.about-hero {
  background: white;
  padding: 60px 20px;
}

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

.story-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #4A4A4A;
  margin-bottom: 25px;
}

.mission {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 6px solid #FF6B9D;
  font-size: 18px;
  margin-top: 30px;
}

/* === VALUES === */
.values {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 5px solid #F5C400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
  border-top-color: #FF6B9D;
}

.value-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.value-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* === TEAM === */
.team {
  background: white;
  padding: 80px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}

.team-member {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.member-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: 0 4px 15px rgba(201, 28, 92, 0.3);
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo-placeholder {
  transform: scale(1.1);
}

.member-photo-placeholder::before {
  content: '👤';
}

.team-member h3 {
  color: #C91C5C;
  font-size: 20px;
  margin-bottom: 5px;
}

.role {
  color: #F5C400;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-member p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.credentials {
  background: rgba(255, 107, 157, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: #C91C5C;
  font-weight: 600;
  margin-top: 10px;
}

/* === ACHIEVEMENTS === */
.achievements {
  background: linear-gradient(135deg, #C91C5C 0%, #8B1342 100%);
  padding: 80px 20px;
  text-align: center;
}

.achievements h2 {
  color: white;
  margin-bottom: 50px;
}

.achievements h2::after {
  background: #F5C400;
}

.achievements .stats-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.achievements .stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.achievements .stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #F5C400;
}

.achievements .stat-number {
  color: #F5C400;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.achievements .stat-label {
  color: white;
}

/* === TRANSPARENCY === */
.transparency {
  background: white;
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.transparency h2 {
  text-align: center;
  margin-bottom: 30px;
}

.transparency > p {
  font-size: 17px;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 30px;
}

.transparency-list {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 6px solid #FF6B9D;
  margin-bottom: 30px;
}

.transparency-list li {
  padding: 15px 0;
  border-bottom: 1px solid #E0E0E0;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 30px;
  position: relative;
}

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

.transparency-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B9D;
  font-weight: 700;
}

.guarantee {
  background: linear-gradient(135deg, #F5C400 0%, #FFD700 100%);
  padding: 25px 30px;
  border-radius: 15px;
  font-size: 16px;
  color: #2D2D2D;
  box-shadow: 0 4px 15px rgba(245, 196, 0, 0.3);
}

.guarantee strong {
  color: #C91C5C;
  font-size: 18px;
}

/* === CTA JOIN === */
.cta-join {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-join h2 {
  margin-bottom: 20px;
}

.cta-join p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* === CONTACT PAGE === */
.contact-methods {
  padding: 60px 20px;
  background: white;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #FF6B9D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.contact-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.contact-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.contact-detail {
  color: #2D2D2D;
  font-weight: 700;
  font-size: 16px;
}

.availability {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

/* === CONTACT FORM === */
.contact-form-section {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 45px 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 15px;
}

.input-placeholder,
.select-placeholder,
.textarea-placeholder {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.input-placeholder {
  height: 48px;
}

.textarea-placeholder {
  height: 140px;
}

.select-placeholder {
  height: 48px;
}

.input-placeholder:hover,
.select-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #FF6B9D;
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.privacy-note {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 15px;
}

.privacy-note a {
  color: #C91C5C;
  text-decoration: underline;
}

/* === CONTACT REASONS === */
.contact-reasons {
  background: white;
  padding: 80px 20px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.reason-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.reason-card img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.reason-card h3 {
  color: #C91C5C;
  font-size: 22px;
}

.reason-card p {
  color: #666;
  line-height: 1.7;
}

/* === OFFICE HOURS === */
.office-hours {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

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

.hours-table {
  max-width: 600px;
  margin: 0 auto 30px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  border-bottom: 1px solid #E0E0E0;
  transition: background 0.3s ease;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  background: #FFF5F7;
}

.hours-row .day {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 15px;
}

.hours-row .hours {
  color: #666;
  font-size: 15px;
}

.office-hours .note {
  text-align: center;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

/* === MAP SECTION === */
.map-section {
  background: white;
  padding: 80px 20px;
}

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

.map-placeholder {
  max-width: 900px;
  margin: 0 auto 20px;
  height: 400px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 3px solid #E0E0E0;
}

.map-placeholder p {
  color: #999;
  font-size: 16px;
  font-weight: 600;
}

.map-note {
  text-align: center;
  color: #666;
  font-size: 15px;
  font-style: italic;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: white;
  padding: 60px 20px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #C91C5C;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content ul li {
  padding: 8px 0;
  color: #4A4A4A;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B9D;
  font-weight: 700;
}

/* === CONTACT DPO === */
.contact-dpo {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 60px 20px;
  text-align: center;
}

.contact-dpo h2 {
  margin-bottom: 20px;
}

.contact-dpo p {
  font-size: 17px;
  color: #666;
}

.contact-dpo a {
  color: #C91C5C;
  font-weight: 700;
  text-decoration: underline;
}

.contact-dpo a:hover {
  color: #8B1342;
}

/* === RIGHTS INFO === */
.rights-info {
  background: white;
  padding: 80px 20px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 50px;
}

.right-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 35px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  max-width: 340px;
  border-left: 5px solid #FF6B9D;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
  border-left-color: #F5C400;
}

.right-card h3 {
  color: #C91C5C;
  font-size: 18px;
  margin-bottom: 12px;
}

.right-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.info-text {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

/* === COOKIES TYPES === */
.cookies-types {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

.cookies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.cookie-category {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #FF6B9D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cookie-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.cookie-category h3 {
  color: #C91C5C;
  font-size: 20px;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.required-badge,
.optional-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required-badge {
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
  color: white;
}

.optional-badge {
  background: #E0E0E0;
  color: #666;
}

/* === QUICK LINKS === */
.quick-links {
  background: white;
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.link-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
  border-color: #FF6B9D;
}

.link-card h3 {
  color: #C91C5C;
  font-size: 18px;
}

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

/* === CONTACT LEGAL === */
.contact-legal {
  background: linear-gradient(135deg, #F5C400 0%, #FFD700 100%);
  padding: 60px 20px;
  text-align: center;
}

.contact-legal h2 {
  color: #2D2D2D;
  margin-bottom: 20px;
}

.contact-legal h2::after {
  background: #C91C5C;
}

.contact-legal p {
  color: #4A4A4A;
  font-size: 17px;
}

.contact-legal a {
  color: #C91C5C;
  font-weight: 700;
  text-decoration: underline;
}

.contact-legal a:hover {
  color: #8B1342;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 120px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(201, 28, 92, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  font-size: 20px;
  color: #2D2D2D;
  font-weight: 600;
  margin-bottom: 15px;
}

.next-steps {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* === STEPS SECTION === */
.next-steps-section {
  background: white;
  padding: 80px 20px;
}

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

.step-card {
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F5C400, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #2D2D2D;
  box-shadow: 0 4px 15px rgba(245, 196, 0, 0.4);
  font-family: 'Quicksand', sans-serif;
}

.step-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.step-card p {
  color: #666;
  line-height: 1.7;
}

.time {
  background: rgba(255, 107, 157, 0.1);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 13px;
  color: #C91C5C;
  font-weight: 600;
}

/* === WHILE YOU WAIT === */
.while-you-wait {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.suggestion-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.suggestion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.suggestion-card img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.suggestion-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.suggestion-card p {
  color: #666;
  line-height: 1.7;
}

/* === SOCIAL PROOF === */
.social-proof {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.stats-display {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stats-display .stat-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.stats-display .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #C91C5C;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 2px 2px 0px rgba(245, 196, 0, 0.3);
  margin-bottom: 10px;
}

.stats-display .label {
  display: block;
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

/* === CONTACT ALTERNATIVES === */
.contact-alternatives {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF5F7 100%);
  padding: 80px 20px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}

.method-card {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 28, 92, 0.2);
}

.method-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(2px 2px 4px rgba(201, 28, 92, 0.3));
}

.method-card h3 {
  color: #C91C5C;
  font-size: 20px;
}

.method-card p {
  color: #2D2D2D;
  font-weight: 700;
  font-size: 18px;
}

.method-card .hours {
  color: #999;
  font-size: 14px;
  font-style: italic;
}

/* === QUICK LINKS SECTION === */
.quick-links-section {
  background: white;
  padding: 80px 20px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #F5C400;
}

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

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

.cookie-text {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  flex: 1 1 400px;
}

.cookie-text a {
  color: #F5C400;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #F5C400, #FFD700);
  color: #2D2D2D;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 196, 0, 0.5);
}

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

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

.cookie-settings {
  background: transparent;
  color: #F5C400;
  border: 2px solid #F5C400;
}

.cookie-settings:hover {
  background: rgba(245, 196, 0, 0.1);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 25px;
  padding: 45px 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #E0E0E0;
}

.cookie-modal-header h2 {
  color: #C91C5C;
  font-size: 26px;
}

.cookie-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cookie-close:hover {
  background: #F5F5F5;
  color: #C91C5C;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 25px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
  border-radius: 15px;
  border-left: 5px solid #FF6B9D;
}

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

.cookie-category h3 {
  color: #C91C5C;
  font-size: 18px;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #FF6B9D, #C91C5C);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-category p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.cookie-modal-footer {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #E0E0E0;
  flex-wrap: wrap;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 15px;
    padding: 8px 14px;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Features */
  .features-grid {
    gap: 25px;
  }
  
  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Services */
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Reviews sidebar */
  .filters-sidebar {
    position: static;
    flex: 1 1 100%;
  }
  
  .reviews-main {
    flex: 1 1 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 140px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }
  
  /* Cards */
  .feature-card,
  .service-card,
  .review-card,
  .testimonial-card,
  .comparison-card,
  .guide-card {
    padding: 30px 20px;
  }
  
  /* Form */
  .form-placeholder {
    padding: 30px 20px;
  }
}

/* === PRINT STYLES === */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  footer,
  .btn,
  .cta-buttons,
  .newsletter,
  .cta-banner {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus {
  outline: 3px solid #F5C400;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F5C400;
  outline-offset: 2px;
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
  body {
    background: white;
  }
  
  .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }
  
  .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === END OF STYLESHEET === */