/* ========================================
   ELASTIC PAINT - SOFT PASTEL DESIGN
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9E6 50%, #F0F4FF 100%);
  min-height: 100vh;
}

/* ========================================
   SOFT PASTEL COLOR PALETTE
   ======================================== */

:root {
  --pastel-pink: #FFB5C2;
  --pastel-peach: #FFCDB2;
  --pastel-yellow: #FFF4CC;
  --pastel-mint: #C7E9E3;
  --pastel-lavender: #D4C5F9;
  --pastel-blue: #B8D8E8;
  --soft-gray: #6B6B6B;
  --light-gray: #F8F8F8;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(255, 181, 194, 0.15);
  --shadow-hover: 0 8px 30px rgba(255, 181, 194, 0.25);
}

/* ========================================
   TYPOGRAPHY - SOFT & DREAMY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 600;
  color: #5A5A5A;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #FF9DB0;
  text-shadow: 2px 2px 4px rgba(255, 157, 176, 0.2);
}

h2 {
  font-size: 32px;
  color: #FFB5C2;
}

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

h4 {
  font-size: 18px;
  color: #6B6B6B;
}

p {
  margin-bottom: 16px;
  color: #5A5A5A;
}

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

a:hover {
  color: #FF9DB0;
}

/* ========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ======================================== */

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 245, 0.95) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(255, 181, 194, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(255, 181, 194, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #6B6B6B;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

/* ========================================
   MOBILE MENU (HAMBURGER)
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 181, 194, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.98) 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(255, 181, 194, 0.3);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 181, 194, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.4);
}

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

.mobile-nav a {
  color: #6B6B6B;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  border-color: #FFB5C2;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

/* ========================================
   HERO SECTION - DREAMY & SOFT
   ======================================== */

.hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF4E6 50%, #F0F4FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(255, 181, 194, 0.15);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 181, 194, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFB5C2 0%, #FF9DB0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #6B6B6B;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C7E9E3 0%, #B8D8E8 100%);
  color: #4A4A4A;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(199, 233, 227, 0.3);
  margin-top: 16px;
}

/* ========================================
   BUTTONS - SOFT & PLAYFUL
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 181, 194, 0.4);
  background: linear-gradient(135deg, #FF9DB0 0%, #FFB5C2 100%);
}

.btn-secondary {
  background: white;
  color: #FFB5C2;
  border: 2px solid #FFB5C2;
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 181, 194, 0.3);
}

button.btn {
  border: none;
}

/* ========================================
   SECTIONS - CONSISTENT SPACING
   ======================================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6B6B6B;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 244, 230, 0.8) 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

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

.feature-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(255, 181, 194, 0.2);
  border-color: #FFB5C2;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 181, 194, 0.2));
}

.feature-card h3 {
  color: #FFB5C2;
  margin-bottom: 12px;
}

.feature-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */

.categories {
  padding: 60px 20px;
}

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

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

.category-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  flex: 1 1 350px;
  max-width: 450px;
  box-shadow: 0 6px 30px rgba(255, 181, 194, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 181, 194, 0.25);
  border-color: #FFCDB2;
}

.category-card img {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  filter: drop-shadow(0 6px 15px rgba(255, 181, 194, 0.2));
}

.category-card h3 {
  color: #FF9DB0;
  font-size: 28px;
  margin-bottom: 15px;
}

.category-card p {
  color: #6B6B6B;
  font-size: 16px;
  margin-bottom: 25px;
}

/* ========================================
   SERVICES/PRODUCTS GRID
   ======================================== */

.services {
  background: linear-gradient(135deg, rgba(240, 244, 255, 0.5) 0%, rgba(255, 249, 230, 0.5) 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

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

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.25);
  border-color: #D4C5F9;
}

.service-card img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(212, 197, 249, 0.2));
}

.service-card h3 {
  color: #D4C5F9;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-card .price {
  color: #FFB5C2;
  font-weight: 700;
  font-size: 20px;
  margin-top: auto;
  font-family: 'Quicksand', sans-serif;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(199, 233, 227, 0.3) 100%);
  border-radius: 30px;
}

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

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(199, 233, 227, 0.15);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(199, 233, 227, 0.25);
}

.benefit-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(199, 233, 227, 0.3));
}

.benefit-item p {
  color: #5A5A5A;
  font-size: 16px;
  font-weight: 500;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.testimonial-card {
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 6px 30px rgba(255, 181, 194, 0.15);
  border-left: 5px solid #FFB5C2;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 181, 194, 0.25);
}

.testimonial-card .rating {
  color: #FFC107;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(255, 193, 7, 0.3);
}

.testimonial-card p {
  color: #3A3A3A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card strong {
  color: #5A5A5A;
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 50%, #FFF4CC 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 8px 35px rgba(255, 181, 194, 0.3);
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.trust-signals span {
  background: white;
  color: #FFB5C2;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */

.contact-info {
  padding: 60px 20px;
}

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

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

.contact-item {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 5px 25px rgba(184, 216, 232, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #B8D8E8;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(184, 216, 232, 0.25);
}

.contact-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(184, 216, 232, 0.3));
}

.contact-item h3 {
  color: #B8D8E8;
  margin-bottom: 15px;
}

.contact-item p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.7;
}

.contact-item a {
  color: #FFB5C2;
  font-weight: 600;
}

.contact-item a:hover {
  color: #FF9DB0;
  text-decoration: underline;
}

/* ========================================
   PAGE HERO (INTERNAL PAGES)
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9E6 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-radius: 25px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #6B6B6B;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #FFB5C2;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #6B6B6B;
  max-width: 700px;
  margin: 0 auto;
}

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

/* ========================================
   PRODUCTS PAGE
   ======================================== */

.products-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.filters {
  flex: 0 0 250px;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.12);
  position: sticky;
  top: 100px;
}

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

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

.filter-group h4 {
  color: #5A5A5A;
  font-size: 16px;
  margin-bottom: 12px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #6B6B6B;
  cursor: pointer;
  font-size: 15px;
  transition: color 0.3s ease;
}

.filter-group label:hover {
  color: #FFB5C2;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #FFB5C2;
}

.products-main {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.products-header p {
  color: #6B6B6B;
  font-size: 16px;
  margin: 0;
}

.sort-select {
  padding: 10px 20px;
  border: 2px solid #FFB5C2;
  border-radius: 20px;
  background: white;
  color: #6B6B6B;
  font-size: 15px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.sort-select:hover {
  background: #FFF9F0;
  border-color: #FF9DB0;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.product-card {
  background: white;
  padding: 25px 20px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 181, 194, 0.2);
  border-color: #FFB5C2;
}

.product-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 181, 194, 0.3);
}

.product-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 181, 194, 0.15));
}

.product-card h3 {
  color: #5A5A5A;
  font-size: 18px;
  margin-bottom: 12px;
}

.product-card .rating {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card .price {
  color: #FFB5C2;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
}

.product-card .btn {
  width: 100%;
  padding: 12px 20px;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination button {
  background: white;
  border: 2px solid #FFB5C2;
  color: #FFB5C2;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 600;
  min-width: 45px;
  transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

/* ========================================
   SUBCATEGORIES
   ======================================== */

.subcategories {
  padding: 40px 20px;
}

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

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

.subcategory-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.subcategory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(255, 181, 194, 0.2);
  border-color: #FFCDB2;
}

.subcategory-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 181, 194, 0.2));
}

.subcategory-card h3 {
  color: #FF9DB0;
  font-size: 20px;
  margin-bottom: 10px;
}

.subcategory-card p {
  color: #6B6B6B;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */

.featured-products {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.5) 0%, rgba(255, 249, 240, 0.5) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

/* ========================================
   CARE GUIDE / TIPS
   ======================================== */

.care-guide {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(199, 233, 227, 0.2) 0%, rgba(184, 216, 232, 0.2) 100%);
  border-radius: 30px;
}

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

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

.tip-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 5px 25px rgba(199, 233, 227, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #C7E9E3;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(199, 233, 227, 0.25);
}

.tip-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(199, 233, 227, 0.2));
}

.tip-card h3 {
  color: #C7E9E3;
  margin-bottom: 15px;
}

.tip-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

.care-guide > a {
  display: block;
  text-align: center;
  margin-top: 30px;
}

/* ========================================
   BRANDS SECTION
   ======================================== */

.brands {
  padding: 60px 20px;
}

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

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

.brand-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 100%);
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.12);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.2);
  border-color: #D4C5F9;
}

.brand-card p {
  color: #5A5A5A;
  font-size: 16px;
  font-weight: 500;
}

/* ========================================
   BEHAVIOR SECTION
   ======================================== */

.behavior {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.4) 0%, rgba(255, 249, 240, 0.4) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

.behavior-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.behavior-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
  transition: all 0.3s ease;
  border-left: 5px solid #FFB5C2;
}

.behavior-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 181, 194, 0.2);
}

.behavior-card h3 {
  color: #FFB5C2;
  margin-bottom: 15px;
}

.behavior-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

.behavior > a {
  display: block;
  text-align: center;
  margin-top: 30px;
}

/* ========================================
   ABOUT PAGE - STORY & VALUES
   ======================================== */

.story {
  padding: 60px 20px;
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #5A5A5A;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.timeline-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  padding: 25px 30px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
  border-top: 4px solid #FFB5C2;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 181, 194, 0.2);
}

.timeline-item strong {
  display: block;
  color: #FFB5C2;
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}

.timeline-item p {
  color: #6B6B6B;
  font-size: 15px;
  margin: 0;
}

/* ========================================
   MISSION & VALUES
   ======================================== */

.mission-values {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.3) 0%, rgba(240, 244, 255, 0.3) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.value-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #D4C5F9;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.25);
}

.value-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(212, 197, 249, 0.2));
}

.value-card h3 {
  color: #D4C5F9;
  margin-bottom: 15px;
}

.value-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team {
  padding: 60px 20px;
}

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

.team > p {
  text-align: center;
  color: #6B6B6B;
  margin-bottom: 40px;
  font-size: 16px;
}

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

.team-member {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(199, 233, 227, 0.15);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(199, 233, 227, 0.25);
  border-color: #C7E9E3;
}

.team-member h3 {
  color: #C7E9E3;
  margin-bottom: 8px;
}

.team-member .role {
  color: #FFB5C2;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-member p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   COMMITMENTS
   ======================================== */

.commitments {
  background: linear-gradient(135deg, rgba(199, 233, 227, 0.2) 0%, rgba(184, 216, 232, 0.2) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.commitment-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(184, 216, 232, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #B8D8E8;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(184, 216, 232, 0.25);
}

.commitment-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(184, 216, 232, 0.2));
}

.commitment-card h3 {
  color: #B8D8E8;
  margin-bottom: 15px;
}

.commitment-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   STATISTICS
   ======================================== */

.statistics {
  padding: 60px 20px;
}

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

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

.stat-item {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(255, 181, 194, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(255, 181, 194, 0.4);
}

.stat-item h3 {
  color: white;
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item p {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
}

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

.cta-section p {
  font-size: 18px;
  color: #6B6B6B;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CONSULTATION / SERVICES
   ======================================== */

.services-overview {
  padding: 60px 20px;
}

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

/* ========================================
   CONSULTATION TYPES
   ======================================== */

.consultation-types {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.3) 0%, rgba(255, 249, 240, 0.3) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.consultation-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 350px;
  max-width: 500px;
  box-shadow: 0 5px 25px rgba(184, 216, 232, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #B8D8E8;
}

.consultation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(184, 216, 232, 0.25);
}

.consultation-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(184, 216, 232, 0.2));
}

.consultation-card h3 {
  color: #B8D8E8;
  margin-bottom: 15px;
}

.consultation-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.consultation-card .contact-method {
  color: #FFB5C2;
  font-weight: 600;
  font-size: 16px;
}

.consultation-card .contact-method a {
  color: #FFB5C2;
}

/* ========================================
   EXPERT TEAM
   ======================================== */

.expert-team {
  padding: 60px 20px;
}

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

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

.expert-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 350px;
  max-width: 500px;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #D4C5F9;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.25);
}

.expert-card h3 {
  color: #D4C5F9;
  margin-bottom: 10px;
}

.expert-card .credentials {
  color: #FFB5C2;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.expert-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.5) 0%, rgba(240, 244, 255, 0.5) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #FFB5C2;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(255, 181, 194, 0.2);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #FFB5C2;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
  padding: 60px 20px;
}

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

.contact-form-section > p {
  text-align: center;
  color: #6B6B6B;
  margin-bottom: 40px;
  font-size: 16px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(255, 181, 194, 0.15);
}

.form-note,
.form-instructions {
  text-align: center;
  color: #6B6B6B;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.form-note a,
.form-instructions a {
  color: #FFB5C2;
  font-weight: 600;
}

.response-time {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-bottom: 25px;
}

.contact-info-box {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9F0 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FFB5C2;
}

.contact-info-box h3 {
  color: #FFB5C2;
  margin-bottom: 20px;
}

.contact-info-box p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-info-box a {
  color: #FFB5C2;
  font-weight: 600;
}

.contact-info-box strong {
  color: #6B6B6B;
}

.form-wrapper > a {
  display: block;
  text-align: center;
  margin-top: 25px;
}

/* ========================================
   CONTACT METHODS
   ======================================== */

.contact-methods {
  padding: 60px 20px;
}

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

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

.contact-card {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  flex: 1 1 350px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(184, 216, 232, 0.15);
  transition: all 0.3s ease;
  border-top: 5px solid #B8D8E8;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(184, 216, 232, 0.25);
}

.contact-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 12px rgba(184, 216, 232, 0.3));
}

.contact-card h3 {
  color: #B8D8E8;
  margin-bottom: 15px;
  font-size: 24px;
}

.contact-card p {
  color: #6B6B6B;
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-card .contact-detail {
  color: #5A5A5A;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-card .contact-detail a {
  color: #FFB5C2;
}

.contact-card .response-time {
  color: #999;
  font-size: 14px;
  font-style: italic;
}

/* ========================================
   LOCATION INFO
   ======================================== */

.location-info {
  background: linear-gradient(135deg, rgba(199, 233, 227, 0.2) 0%, rgba(184, 216, 232, 0.2) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

.location-details {
  display: flex;
  justify-content: center;
}

.address-card {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 6px 30px rgba(199, 233, 227, 0.2);
  border-left: 5px solid #C7E9E3;
}

.address-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(199, 233, 227, 0.3));
}

.address-card h3 {
  color: #C7E9E3;
  margin-bottom: 15px;
}

.address-card p {
  color: #5A5A5A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-info-items p {
  margin-bottom: 10px;
}

.location-info-items strong {
  color: #6B6B6B;
}

/* ========================================
   OPENING HOURS
   ======================================== */

.opening-hours {
  padding: 60px 20px;
}

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

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 2px solid #FFF5F7;
  transition: background 0.3s ease;
}

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

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

.hours-row .day {
  color: #6B6B6B;
  font-weight: 600;
  font-size: 16px;
}

.hours-row .time {
  color: #FFB5C2;
  font-weight: 600;
  font-size: 16px;
}

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

/* ========================================
   FAQ QUICK
   ======================================== */

.faq-quick {
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.4) 0%, rgba(240, 244, 255, 0.4) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  padding: 40px 20px;
}

.legal-section {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(255, 181, 194, 0.1);
  border-left: 4px solid #FFB5C2;
}

.legal-section h2 {
  color: #FFB5C2;
  font-size: 22px;
  margin-bottom: 20px;
}

.legal-section p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section a {
  color: #FFB5C2;
  font-weight: 600;
}

.legal-section strong {
  color: #6B6B6B;
}

/* ========================================
   RIGHTS OVERVIEW
   ======================================== */

.rights-overview {
  background: linear-gradient(135deg, rgba(240, 244, 255, 0.4) 0%, rgba(255, 244, 230, 0.4) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.right-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.12);
  transition: all 0.3s ease;
  border-top: 4px solid #D4C5F9;
}

.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.2);
}

.right-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(212, 197, 249, 0.2));
}

.right-card h3 {
  color: #D4C5F9;
  margin-bottom: 12px;
}

.right-card p {
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   COOKIE TABLE
   ======================================== */

.cookie-table-section {
  padding: 60px 20px;
}

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

.table-wrapper {
  overflow-x: auto;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cookie-table thead {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
}

.cookie-table thead th {
  color: white;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.cookie-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.cookie-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.cookie-table tbody tr {
  border-bottom: 2px solid #FFF5F7;
  transition: background 0.3s ease;
}

.cookie-table tbody tr:hover {
  background: #FFF9F0;
}

.cookie-table tbody td {
  padding: 15px 20px;
  color: #5A5A5A;
  font-size: 15px;
}

/* ========================================
   KEY POINTS
   ======================================== */

.key-points {
  background: linear-gradient(135deg, rgba(199, 233, 227, 0.2) 0%, rgba(184, 216, 232, 0.2) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.point-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(199, 233, 227, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #C7E9E3;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(199, 233, 227, 0.25);
}

.point-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(199, 233, 227, 0.2));
}

.point-card h3 {
  color: #C7E9E3;
  margin-bottom: 10px;
}

.point-card p {
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 600;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF4E6 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.success-icon {
  margin-bottom: 30px;
}

.success-icon img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 6px 20px rgba(199, 233, 227, 0.4));
}

.thank-you-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.confirmation-message {
  font-size: 24px;
  color: #C7E9E3;
  font-weight: 600;
  margin-bottom: 15px;
}

.thank-you-content p {
  font-size: 18px;
  color: #6B6B6B;
  margin-bottom: 30px;
}

/* ========================================
   NEXT STEPS / INFO
   ======================================== */

.next-steps,
.next-info {
  padding: 60px 20px;
}

.next-steps h2,
.next-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  background: white;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(255, 181, 194, 0.12);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-left: 5px solid #FFB5C2;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(255, 181, 194, 0.2);
}

.step-number {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

.step-item h3 {
  color: #FFB5C2;
  margin-bottom: 10px;
}

.step-item p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

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

.info-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(212, 197, 249, 0.12);
  transition: all 0.3s ease;
  border-top: 4px solid #D4C5F9;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212, 197, 249, 0.2);
}

.info-card h3 {
  color: #D4C5F9;
  margin-bottom: 15px;
}

.info-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   ADDITIONAL ACTIONS / EXPLORE
   ======================================== */

.additional-actions,
.explore-section {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.3) 0%, rgba(240, 244, 255, 0.3) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.additional-actions h2,
.explore-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.action-card,
.explore-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(184, 216, 232, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid #B8D8E8;
}

.action-card:hover,
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(184, 216, 232, 0.25);
}

.action-card img,
.explore-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(184, 216, 232, 0.2));
}

.action-card h3,
.explore-card h3 {
  color: #B8D8E8;
  margin-bottom: 15px;
}

.action-card p,
.explore-card p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* ========================================
   CONTACT REMINDER / INFO SECTION
   ======================================== */

.contact-reminder,
.contact-info-section {
  padding: 60px 20px;
}

.contact-reminder h2,
.contact-info-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.contact-box {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 30px rgba(255, 181, 194, 0.15);
  border-left: 5px solid #FFB5C2;
}

.contact-box p {
  color: #5A5A5A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-box strong {
  color: #6B6B6B;
}

.contact-box a {
  color: #FFB5C2;
  font-weight: 600;
}

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

.contact-details .contact-item {
  flex: 1 1 250px;
  max-width: 300px;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.4) 0%, rgba(240, 244, 255, 0.4) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

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

.trust-item {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(199, 233, 227, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #C7E9E3;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(199, 233, 227, 0.25);
}

.trust-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(199, 233, 227, 0.2));
}

.trust-item h3 {
  color: #C7E9E3;
  margin-bottom: 15px;
}

.trust-item p {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

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

footer {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 50%, #FFF4CC 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

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

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.3));
}

.footer-brand p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 5px;
}

.footer-column a:hover {
  color: white;
  padding-left: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.footer-bottom p {
  color: white;
  font-size: 14px;
  margin: 0;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.98) 100%);
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(255, 181, 194, 0.3);
  z-index: 10000;
  backdrop-filter: blur(10px);
  border-top: 3px solid #FFB5C2;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text a {
  color: #FFB5C2;
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

#accept-cookies {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 194, 0.4);
}

#reject-cookies {
  background: white;
  color: #6B6B6B;
  border: 2px solid #E0E0E0;
}

#reject-cookies:hover {
  background: #F8F8F8;
  border-color: #D0D0D0;
}

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

#cookie-settings:hover {
  background: #FFB5C2;
  color: white;
}

/* ========================================
   COOKIE MODAL
   ======================================== */

#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

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

.modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 40px 35px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(255, 181, 194, 0.4);
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.modal-header h2 {
  color: #FFB5C2;
  margin: 0;
}

.modal-close {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.4);
}

.cookie-category {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #FFB5C2;
  box-shadow: 0 3px 15px rgba(255, 181, 194, 0.1);
}

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

.category-header h3 {
  color: #5A5A5A;
  font-size: 18px;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
}

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

input:disabled + .toggle-slider {
  background: #C7E9E3;
  cursor: not-allowed;
}

.category-description {
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.modal-actions button {
  flex: 1;
  padding: 14px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
  min-width: 140px;
}

#save-preferences {
  background: linear-gradient(135deg, #FFB5C2 0%, #FFCDB2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 181, 194, 0.3);
}

#save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 194, 0.4);
}

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

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  /* Section padding */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Products layout */
  .products-layout {
    flex-direction: column;
  }

  .filters {
    position: static;
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  /* Products grid */
  .products-grid,
  .features-grid,
  .category-grid,
  .services-grid {
    justify-content: center;
  }

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

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .footer-brand {
    max-width: 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Contact cards */
  .contact-grid,
  .contact-cards {
    flex-direction: column;
  }

  .contact-item,
  .contact-card {
    max-width: 100%;
  }

  /* Timeline */
  .steps-timeline {
    gap: 20px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 15px;
  }

  /* Table responsive */
  .table-wrapper {
    overflow-x: scroll;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 30px 20px;
    margin: 10px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 30px;
  }

  .products-grid,
  .features-grid {
    gap: 20px;
  }

  .product-card,
  .feature-card {
    flex: 1 1 calc(50% - 20px);
  }
}

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

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

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

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

.hidden {
  display: none;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}