/* ============================================
   TECHPULSE - SOFT PASTEL DESIGN STYLE
   Modern Tech News Platform with Dreamy Aesthetics
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F5FF 100%);
  min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #6B7C9D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #8B94B5;
}

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

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

h4 {
  font-size: 18px;
  color: #9BA3C0;
}

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

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

a:hover {
  color: #C4A9E1;
}

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

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

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

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #8B94B5;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(163, 184, 225, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #DCC5E8 0%, #C5DCF0 100%);
  transform: scale(1.05);
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  z-index: 9999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(163, 184, 225, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFE5F0 0%, #E5F0FF 100%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #8B94B5;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(163, 184, 225, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, #FFD5E5 0%, #D5E5FF 100%);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  color: #6B7C9D;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(163, 184, 225, 0.2);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #8B94B5;
  border-color: rgba(196, 169, 225, 0.4);
  transform: translateX(5px);
}

/* ============================================
   HEADER - SOFT PASTEL STYLE
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(163, 184, 225, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid rgba(196, 169, 225, 0.2);
}

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

.logo img {
  height: 45px;
  filter: drop-shadow(0 2px 8px rgba(163, 184, 225, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #6B7C9D;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C4A9E1 0%, #A3B8E1 100%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: #8B94B5;
  background: rgba(232, 213, 242, 0.3);
}

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

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .header-content {
    justify-content: center;
  }
}

/* ============================================
   BUTTONS - SOFT PASTEL STYLE
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #6B7C9D;
  box-shadow: 0 4px 15px rgba(163, 184, 225, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #DCC5E8 0%, #C5DCF0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 184, 225, 0.4);
  color: #8B94B5;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #6B7C9D;
  border: 2px solid rgba(163, 184, 225, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFE5F0 0%, #E5F0FF 100%);
  border-color: rgba(196, 169, 225, 0.6);
  transform: translateY(-2px);
  color: #8B94B5;
}

button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   HERO SECTION - DREAMY PASTEL
   ============================================ */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 50%, #FFF5F7 100%);
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(163, 184, 225, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 213, 242, 0.4) 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, #8B94B5 0%, #A3B8E1 50%, #C4A9E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
}

/* ============================================
   NEWS CARDS - SOFT PASTEL GRID
   ============================================ */

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.news-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(163, 184, 225, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(232, 213, 242, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.news-card.main {
  flex: 1 1 100%;
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFE5F0 0%, #E5F0FF 100%);
  color: #8B94B5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  background: rgba(232, 213, 242, 0.5);
  color: #6B7C9D;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #6B7C9D;
}

.news-card p {
  color: #5A6B8C;
  margin-bottom: 16px;
  line-height: 1.6;
}

.read-time {
  font-size: 13px;
  color: #9BA3C0;
  font-style: italic;
}

@media (max-width: 768px) {
  .news-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   CATEGORIES GRID - PASTEL CARDS
   ============================================ */

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(232, 213, 242, 0.3);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(163, 184, 225, 0.25);
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
  border-color: rgba(196, 169, 225, 0.5);
}

.category-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 20px;
  color: #6B7C9D;
  margin: 0;
}

.category-card p {
  color: #5A6B8C;
  font-size: 14px;
  margin: 0;
}

.count {
  display: inline-block;
  font-size: 13px;
  color: #9BA3C0;
  background: rgba(232, 213, 242, 0.4);
  padding: 6px 14px;
  border-radius: 15px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .category-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   SERVICES GRID - PREMIUM CARDS
   ============================================ */

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(232, 213, 242, 0.3);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.service-card h3 {
  color: #6B7C9D;
  margin: 0;
}

.service-card p {
  color: #5A6B8C;
  font-size: 14px;
  flex-grow: 1;
  margin: 0;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #8B94B5;
  margin-top: 16px;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  padding: 12px 24px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   NEWSLETTER SIGNUP - SOFT GRADIENT
   ============================================ */

.newsletter-signup {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
  box-shadow: 0 10px 40px rgba(163, 184, 225, 0.2);
}

.newsletter-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #8B94B5;
}

.newsletter-content p {
  font-size: 18px;
  color: #6B7C9D;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid rgba(163, 184, 225, 0.3);
  border-radius: 25px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #5A6B8C;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: rgba(196, 169, 225, 0.6);
  box-shadow: 0 0 0 4px rgba(232, 213, 242, 0.2);
}

.email-input::placeholder {
  color: #9BA3C0;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
}

/* ============================================
   STATS GRID - PASTEL NUMBERS
   ============================================ */

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

.stat-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.2);
  border-color: rgba(196, 169, 225, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B94B5 0%, #C4A9E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #6B7C9D;
  display: block;
}

@media (max-width: 768px) {
  .stat-item {
    flex: 1 1 100%;
  }
}

/* ============================================
   TESTIMONIALS - DREAMY CARDS
   ============================================ */

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid rgba(196, 169, 225, 0.6);
  box-shadow: 0 4px 20px rgba(163, 184, 225, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  font-style: italic;
  margin: 0;
}

.author {
  font-size: 14px;
  color: #8B94B5;
  font-weight: 600;
  margin-top: 16px;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   FOOTER - SOFT PASTEL
   ============================================ */

footer {
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 3px solid rgba(196, 169, 225, 0.3);
}

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

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(163, 184, 225, 0.3));
}

.tagline {
  color: #6B7C9D;
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  color: #8B94B5;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-nav a,
.footer-legal a {
  color: #6B7C9D;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-contact p {
  color: #6B7C9D;
  font-size: 14px;
  line-height: 1.8;
  margin: 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(232, 213, 242, 0.3);
}

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

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}

/* ============================================
   PAGE HEADER & BREADCRUMBS
   ============================================ */

.page-header {
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.breadcrumbs {
  font-size: 14px;
  color: #9BA3C0;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #A3B8E1;
}

.breadcrumbs span {
  color: #6B7C9D;
}

/* ============================================
   FILTERS & TOOLBAR
   ============================================ */

.filters-toolbar {
  margin: 32px 0;
}

.filters {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-select,
.sort-select,
.search-input {
  padding: 12px 20px;
  border: 2px solid rgba(163, 184, 225, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #5A6B8C;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.search-input {
  flex: 1;
  min-width: 250px;
}

.filter-select:focus,
.sort-select:focus,
.search-input:focus {
  outline: none;
  border-color: rgba(196, 169, 225, 0.6);
  box-shadow: 0 0 0 4px rgba(232, 213, 242, 0.2);
}

@media (max-width: 768px) {
  .filters {
    flex-direction: column;
  }
  
  .filter-select,
  .sort-select,
  .search-input {
    width: 100%;
  }
}

/* ============================================
   BREAKING NEWS BANNER
   ============================================ */

.breaking-banner {
  background: linear-gradient(135deg, #FFE5F0 0%, #E5F0FF 100%);
  padding: 24px 32px;
  border-radius: 20px;
  border-left: 4px solid rgba(196, 169, 225, 0.8);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(163, 184, 225, 0.2);
  margin: 32px 0;
}

.breaking-label {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #8B94B5;
  padding: 8px 16px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.breaking-banner h3 {
  flex: 1;
  margin: 0;
  color: #6B7C9D;
  font-size: 18px;
}

.timestamp {
  color: #9BA3C0;
  font-size: 13px;
}

/* ============================================
   CONTENT GRID WITH SIDEBAR
   ============================================ */

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

.main-content {
  flex: 1 1 65%;
  min-width: 300px;
}

.sidebar {
  flex: 1 1 30%;
  min-width: 280px;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  
  .main-content,
  .sidebar {
    flex: 1 1 100%;
  }
}

/* ============================================
   ARTICLE CARDS DETAILED
   ============================================ */

.article-card-detailed {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
}

.article-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #6B7C9D;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-card-detailed h2 {
  color: #6B7C9D;
  margin-bottom: 16px;
  font-size: 24px;
}

.excerpt {
  color: #5A6B8C;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #9BA3C0;
  flex-wrap: wrap;
  align-items: center;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */

.sidebar-widget {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 2px solid rgba(232, 213, 242, 0.3);
}

.sidebar-widget h3 {
  color: #8B94B5;
  font-size: 18px;
  margin-bottom: 16px;
}

.trending-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trending-list li a {
  color: #5A6B8C;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trending-list li a::before {
  content: '→';
  color: #C4A9E1;
  font-weight: 700;
}

.trending-list li a:hover {
  background: rgba(232, 213, 242, 0.3);
  padding-left: 15px;
}

.sidebar-widget.newsletter {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
}

.sidebar-widget.newsletter input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(163, 184, 225, 0.3);
  border-radius: 20px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #5A6B8C;
}

.sidebar-widget.newsletter input:focus {
  outline: none;
  border-color: rgba(196, 169, 225, 0.6);
}

.sidebar-widget.newsletter button {
  width: 100%;
}

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

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

.page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(232, 213, 242, 0.3);
  color: #6B7C9D;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers a.active {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  border-color: rgba(196, 169, 225, 0.5);
  color: #8B94B5;
  transform: scale(1.1);
}

.btn-prev,
.btn-next {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(163, 184, 225, 0.3);
  border-radius: 20px;
  color: #6B7C9D;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-prev:hover,
.btn-next:hover {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  border-color: rgba(196, 169, 225, 0.5);
  color: #8B94B5;
}

/* ============================================
   CATEGORIES PAGE - LARGE CARDS
   ============================================ */

.categories-grid-large {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-card-large {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
}

.category-card-large img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
  transition: transform 0.3s ease;
}

.category-card-large:hover img {
  transform: scale(1.15);
}

.category-card-large h2 {
  color: #6B7C9D;
  text-align: center;
  font-size: 24px;
  margin: 0;
}

.category-card-large p {
  color: #5A6B8C;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.article-count {
  font-size: 14px;
  color: #9BA3C0;
  background: rgba(232, 213, 242, 0.4);
  padding: 6px 16px;
  border-radius: 15px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .category-card-large {
    flex: 1 1 100%;
  }
}

/* ============================================
   SERVICES PREMIUM PAGE
   ============================================ */

.hero-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 50%, #FFF5F7 100%);
  border-radius: 30px;
  margin: 40px 0;
  text-align: center;
}

.services-grid-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.service-card-premium {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.service-card-premium.recommended {
  border: 3px solid rgba(196, 169, 225, 0.6);
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
  position: relative;
}

.service-card-premium.recommended .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #8B94B5;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}

.service-card-premium img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
}

.service-card-premium h3 {
  color: #6B7C9D;
  font-size: 22px;
  text-align: center;
  margin: 0;
}

.service-card-premium p {
  color: #5A6B8C;
  text-align: center;
  line-height: 1.8;
  flex-grow: 1;
  margin: 0;
}

.service-card-premium .price {
  font-size: 28px;
}

@media (max-width: 768px) {
  .service-card-premium {
    flex: 1 1 100%;
  }
}

/* ============================================
   BENEFITS GRID
   ============================================ */

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

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
}

.benefit-item h3 {
  color: #6B7C9D;
  font-size: 18px;
  margin: 0;
}

.benefit-item p {
  color: #5A6B8C;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit-item {
    flex: 1 1 100%;
  }
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section,
.cta-final {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
  box-shadow: 0 10px 40px rgba(163, 184, 225, 0.2);
}

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

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #8B94B5;
}

.cta-content p {
  font-size: 18px;
  color: #6B7C9D;
  margin-bottom: 32px;
}

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

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}

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

.hero-about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  border-radius: 30px;
  margin: 40px 0;
  text-align: center;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(232, 213, 242, 0.3);
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5A6B8C;
  margin-bottom: 24px;
}

.mission-grid {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.mission-card h3,
.vision-card h3 {
  color: #8B94B5;
  margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
  color: #5A6B8C;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mission-card,
  .vision-card {
    flex: 1 1 100%;
  }
}

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

@media (max-width: 768px) {
  .stat-card {
    flex: 1 1 100%;
  }
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.value-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
}

.value-card h3 {
  color: #6B7C9D;
  font-size: 18px;
  margin: 0;
}

.value-card p {
  color: #5A6B8C;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .value-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   CONTACT PAGE - FORMS
   ============================================ */

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

.contact-form-wrapper {
  flex: 1 1 60%;
  min-width: 300px;
}

.contact-info-wrapper {
  flex: 1 1 35%;
  min-width: 280px;
}

.contact-form-display {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(232, 213, 242, 0.3);
}

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

.form-group label {
  display: block;
  color: #6B7C9D;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(163, 184, 225, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #5A6B8C;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(196, 169, 225, 0.6);
  box-shadow: 0 0 0 4px rgba(232, 213, 242, 0.2);
}

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

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

.form-note {
  font-size: 13px;
  color: #9BA3C0;
  margin-top: 16px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(163, 184, 225, 0.2);
  border-color: rgba(196, 169, 225, 0.5);
}

.contact-info-card img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(163, 184, 225, 0.3));
}

.contact-info-card h3 {
  color: #8B94B5;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: #5A6B8C;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: #A3B8E1;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #C4A9E1;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1 1 100%;
  }
}

.contact-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.method-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.method-card img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 12px rgba(163, 184, 225, 0.3));
}

.method-card h3 {
  color: #6B7C9D;
  font-size: 16px;
  margin: 0;
}

.method-card p {
  color: #5A6B8C;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .method-card {
    flex: 1 1 100%;
  }
}

.newsletter-signup-section {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
}

.newsletter-form-display {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

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

.legal-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.toc {
  flex: 0 0 250px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  position: sticky;
  top: 100px;
}

.toc h3 {
  color: #8B94B5;
  font-size: 18px;
  margin-bottom: 16px;
}

.toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc li a {
  color: #6B7C9D;
  font-size: 14px;
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.toc li a:hover {
  background: rgba(232, 213, 242, 0.3);
  color: #8B94B5;
  padding-left: 16px;
}

.legal-text {
  flex: 1 1 60%;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(232, 213, 242, 0.3);
}

.legal-text section {
  margin-bottom: 40px;
}

.legal-text h2 {
  color: #8B94B5;
  font-size: 24px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232, 213, 242, 0.3);
}

.legal-text p {
  color: #5A6B8C;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-text ul {
  padding-left: 24px;
  color: #5A6B8C;
  line-height: 1.8;
}

.legal-text ul li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-wrapper {
    flex-direction: column;
  }
  
  .toc {
    position: static;
    flex: 1 1 100%;
  }
  
  .legal-text {
    flex: 1 1 100%;
  }
}

.contact-cta-legal {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
}

.contact-cta-legal h2 {
  color: #8B94B5;
  margin-bottom: 16px;
}

.contact-cta-legal p {
  color: #6B7C9D;
  margin-bottom: 24px;
}

/* ============================================
   COOKIE SETTINGS SECTION
   ============================================ */

.cookie-settings-section {
  margin: 60px 0;
}

.cookie-toggles {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  margin-bottom: 24px;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 213, 242, 0.3);
}

.toggle-item:last-child {
  border-bottom: none;
}

.toggle-item span {
  color: #6B7C9D;
  font-weight: 600;
}

.toggle-status {
  color: #9BA3C0;
  font-weight: 400;
  font-size: 14px;
}

.toggle-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  border: none;
  border-radius: 15px;
  color: #6B7C9D;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: linear-gradient(135deg, #DCC5E8 0%, #C5DCF0 100%);
}

.cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

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

.success-icon img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 4px 15px rgba(163, 184, 225, 0.3));
}

.confirmation-message {
  font-size: 18px;
  color: #6B7C9D;
  line-height: 1.8;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #8B94B5;
}

.step-card h3 {
  color: #6B7C9D;
  font-size: 18px;
  margin: 0;
}

.step-card p {
  color: #5A6B8C;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card {
    flex: 1 1 100%;
  }
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.articles-grid .article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 2px solid rgba(232, 213, 242, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.articles-grid .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(163, 184, 225, 0.25);
  border-color: rgba(196, 169, 225, 0.5);
}

.articles-grid .article-card h3 {
  color: #6B7C9D;
  font-size: 18px;
  margin: 0;
}

.articles-grid .article-card p {
  color: #5A6B8C;
  font-size: 14px;
  flex-grow: 1;
  margin: 0;
}

.articles-grid .article-card a {
  color: #A3B8E1;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .articles-grid .article-card {
    flex: 1 1 100%;
  }
}

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

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(250, 240, 255, 0.98) 0%, rgba(240, 248, 255, 0.98) 100%);
  backdrop-filter: blur(15px);
  padding: 24px;
  box-shadow: 0 -4px 25px rgba(163, 184, 225, 0.3);
  z-index: 9998;
  border-top: 3px solid rgba(196, 169, 225, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-consent-text {
  flex: 1 1 60%;
  color: #5A6B8C;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text h4 {
  color: #6B7C9D;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-accept-cookies,
.btn-reject-cookies,
.btn-cookie-settings {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept-cookies {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #6B7C9D;
}

.btn-accept-cookies:hover {
  background: linear-gradient(135deg, #DCC5E8 0%, #C5DCF0 100%);
  transform: translateY(-2px);
}

.btn-reject-cookies {
  background: rgba(255, 255, 255, 0.8);
  color: #6B7C9D;
  border: 2px solid rgba(163, 184, 225, 0.4);
}

.btn-reject-cookies:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(196, 169, 225, 0.6);
}

.btn-cookie-settings {
  background: transparent;
  color: #A3B8E1;
  border: 2px solid rgba(163, 184, 225, 0.4);
}

.btn-cookie-settings:hover {
  background: rgba(232, 213, 242, 0.2);
  border-color: rgba(196, 169, 225, 0.6);
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept-cookies,
  .btn-reject-cookies,
  .btn-cookie-settings {
    width: 100%;
  }
}

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

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 124, 157, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal {
  background: linear-gradient(135deg, #FAF0FF 0%, #F0F8FF 100%);
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(163, 184, 225, 0.4);
  border: 3px solid rgba(196, 169, 225, 0.4);
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cookie-modal h3 {
  color: #8B94B5;
  font-size: 24px;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 16px;
  border: 2px solid rgba(232, 213, 242, 0.3);
}

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

.cookie-category-header h4 {
  color: #6B7C9D;
  font-size: 16px;
  margin: 0;
}

.cookie-category p {
  color: #5A6B8C;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(163, 184, 225, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
}

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

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

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

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

.btn-save-preferences,
.btn-accept-all-cookies {
  flex: 1;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-save-preferences {
  background: rgba(255, 255, 255, 0.8);
  color: #6B7C9D;
  border: 2px solid rgba(163, 184, 225, 0.4);
}

.btn-save-preferences:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(196, 169, 225, 0.6);
}

.btn-accept-all-cookies {
  background: linear-gradient(135deg, #E8D5F2 0%, #D5E8F7 100%);
  color: #6B7C9D;
}

.btn-accept-all-cookies:hover {
  background: linear-gradient(135deg, #DCC5E8 0%, #C5DCF0 100%);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
  outline: 3px solid rgba(196, 169, 225, 0.6);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(196, 169, 225, 0.6);
  outline-offset: 3px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal-overlay,
  header,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ============================================
   END OF SOFT PASTEL DESIGN STYLES
   ============================================ */