
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap');

:root {
  /* Color Scheme - Game-inspired, Spanish influence */
  --color-primary: #e63946; /* Vibrant red for primary actions */
  --color-secondary: #2a9d8f; /* Teal for secondary elements */
  --color-accent: #f4a261; /* Warm orange accent */
  --color-dark: #1d3557; /* Deep blue for text and headers */
  --color-light: #f1faee; /* Off-white background */
  --color-gray: #457b9d; /* Muted blue-gray for subtle elements */
  --color-gray-light: #a8dadc; /* Light blue-gray for borders */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Rubik', sans-serif;
  
  /* Font Sizes */
  --fs-xxl: 3.5rem; /* 56px */
  --fs-xl: 2.5rem; /* 40px */
  --fs-lg: 2rem; /* 32px */
  --fs-md: 1.5rem; /* 24px */
  --fs-sm: 1.125rem; /* 18px */
  --fs-xs: 1rem; /* 16px */
  --fs-xxs: 0.875rem; /* 14px */
  
  /* Line Heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
  
  /* Spacing */
  --space-xxs: 0.25rem; /* 4px */
  --space-xs: 0.5rem; /* 8px */
  --space-sm: 1rem; /* 16px */
  --space-md: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */
  --space-xl: 3rem; /* 48px */
  --space-xxl: 5rem; /* 80px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(29, 53, 87, 0.1);
  --shadow-md: 0 4px 8px rgba(29, 53, 87, 0.12);
  --shadow-lg: 0 8px 16px rgba(29, 53, 87, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(29, 53, 87, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem; /* 16px */
  --icon-sm: 1.25rem; /* 20px */
  --icon-md: 1.5rem; /* 24px */
  --icon-lg: 2rem; /* 32px */
  --icon-xl: 3rem; /* 48px */
}

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: var(--lh-normal);
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

h1 {
  font-size: var(--fs-xxl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-lg);
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-sm);
  font-weight: 600;
}

h6 {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
}

.lead {
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: var(--lh-normal);
}

small {
  font-size: var(--fs-xxs);
  line-height: var(--lh-normal);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.btn-secondary:hover {
  background-color: var(--color-gray);
  color: var(--color-light);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  text-decoration: none;
}

.btn i {
  margin-right: var(--space-xs);
  font-size: var(--icon-sm);
}

/* Card styles */
.card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Icon styling */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-xs {
  font-size: var(--icon-xs);
}

.icon-sm {
  font-size: var(--icon-sm);
}

.icon-md {
  font-size: var(--icon-md);
}

.icon-lg {
  font-size: var(--icon-lg);
}

.icon-xl {
  font-size: var(--icon-xl);
}

.icon-text {
  display: inline-flex;
  align-items: center;
}

.icon-text i {
  margin-right: var(--space-xs);
}

/* Badge */
.badge {
  display: inline-block;
  padding: var(--space-xxs) var(--space-xs);
  font-size: var(--fs-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  background-color: var(--color-accent);
  color: var(--color-dark);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.bg-secondary {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.bg-accent {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.bg-dark {
  background-color: var(--color-dark);
  color: var(--color-light);
}

.bg-light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

/* Responsive adjustments */
@media screen and (max-width: 1023px) {
  :root {
    --fs-xxl: 2.75rem;
    --fs-xl: 2.25rem;
    --fs-lg: 1.75rem;
    --fs-md: 1.25rem;
    --space-xxl: 4rem;
    --space-xl: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --fs-xxl: 2.25rem;
    --fs-xl: 1.75rem;
    --fs-lg: 1.5rem;
    --fs-md: 1.25rem;
    --fs-sm: 1rem;
    --space-xxl: 3rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
  }
  
  .btn {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .card {
    padding: var(--space-md);
  }
}
.header {
  font-family: var(--font-primary);
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-light);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.header__logo-wrapper {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-light);
  transition: transform var(--transition-normal);
}

.header__logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.header__logo-icon {
  font-size: var(--fs-xl);
  margin-right: var(--space-xs);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transform: rotate(-5deg);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-main {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-tagline {
  font-size: var(--fs-xxs);
  color: var(--color-gray-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  margin: 0 var(--space-xs);
  position: relative;
}

.header__nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  transition: width var(--transition-normal);
}

.header__nav-item:hover::after {
  width: 100%;
}

.header__nav-link {
  color: var(--color-light);
  font-size: var(--fs-xxs);
  font-weight: 500;
  text-decoration: none;
  padding: var(--space-xxs) var(--space-xs);
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__nav-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
}

.header__cta {
  margin-right: var(--space-sm);
  font-size: var(--fs-xxs);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  padding: var(--space-xxs) var(--space-sm);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  text-decoration: none;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: var(--fs-lg);
  cursor: pointer;
  padding: var(--space-xxs);
  transition: color var(--transition-fast);
}

.header__mobile-toggle:hover {
  color: var(--color-accent);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark);
  z-index: 9999;
  padding: var(--space-md);
  transition: right var(--transition-slow);
  overflow-y: auto;
  flex-direction: column;
}

.header__mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.header__mobile-close {
  background: none;
  border: none;
  color: var(--color-light);
  font-size: var(--fs-md);
  cursor: pointer;
  padding: var(--space-xxs);
  transition: color var(--transition-fast);
}

.header__mobile-close:hover {
  color: var(--color-accent);
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-nav-item {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: var(--space-sm);
}

.header__mobile-nav-link {
  color: var(--color-light);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: var(--space-xs) 0;
}

.header__mobile-nav-link:hover {
  color: var(--color-accent);
  transform: translateX(var(--space-xs));
  text-decoration: none;
}

.header__mobile-footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.header__mobile-badge {
  display: flex;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-light);
}

.header__mobile-badge .badge {
  margin-right: var(--space-xs);
}

.header__mobile-cta {
  width: 100%;
  text-align: center;
}

.header__mobile-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  margin-top: var(--space-md);
}

.header__mobile-legal-link {
  color: var(--color-gray-light);
  font-size: var(--fs-xxs);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header__mobile-legal-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.header__highlight {
  background-color: var(--color-secondary);
  padding: var(--space-xs) 0;
}

.header__highlight-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.header__highlight-text {
  color: var(--color-light);
  font-size: var(--fs-xxs);
  font-weight: 500;
  margin: 0;
}

.header__highlight-link {
  color: var(--color-light);
  font-size: var(--fs-xxs);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.header__highlight-link:hover {
  color: var(--color-dark);
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__mobile-menu.active {
    display: flex;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .header__container {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .header__logo-main {
    font-size: var(--fs-sm);
  }
  
  .header__logo-icon {
    font-size: var(--fs-lg);
  }
  
  .header__cta {
    display: none;
  }
  
  .header__highlight-container {
    justify-content: center;
    text-align: center;
  }
}

/* Main styles */
.main {
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  background-color: var(--color-dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.main .hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.main .hero-content {
  color: var(--color-light);
}

.main .hero-badge {
  margin-bottom: var(--space-md);
}

.main .hero-title {
  color: var(--color-light);
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  position: relative;
}

.main .hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

.main .hero-description {
  color: var(--color-gray-light);
  margin-bottom: var(--space-lg);
}

.main .hero-cta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.main .hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover {
  transform: rotate(0deg) scale(1.05);
}

.main .hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover .hero-image {
  transform: scale(1);
}

.main .hero-shape {
  position: absolute;
  border-radius: var(--radius-pill);
}

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  top: -50px;
  right: -80px;
  transform: rotate(25deg);
  z-index: 1;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.15;
  bottom: -30px;
  left: -60px;
  transform: rotate(-15deg);
  z-index: 1;
}

.main .hero-shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--color-accent);
  opacity: 0.1;
  top: 30%;
  right: -40px;
  transform: rotate(45deg);
  z-index: 1;
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-xxl) 0;
  background-color: var(--color-light);
}

.main .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.main .section-description {
  font-size: var(--fs-sm);
  color: var(--color-gray);
}

.main .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.main .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main .post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.main .post-card-image {
  height: 220px;
  overflow: hidden;
}

.main .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.main .post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.main .post-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main .post-card-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.main .post-card-description {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  flex: 1;
}

.main .section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.main .btn-large {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
}

/* Methodology Section */
.main .methodology {
  padding: var(--space-xxl) 0;
  background-color: var(--color-dark);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.main .methodology::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(100px, -150px);
}

.main .methodology::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background-color: var(--color-secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(-200px, 200px);
}

.main .methodology .section-header h2 {
  color: var(--color-light);
}

.main .methodology .section-description {
  color: var(--color-gray-light);
}

.main .methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.main .methodology-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main .methodology-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.main .methodology-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.main .methodology-card h3 {
  color: var(--color-light);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.main .methodology-card p {
  color: var(--color-gray-light);
  margin-bottom: 0;
}

/* Process Section */
.main .process {
  padding: var(--space-xxl) 0;
  background-color: var(--color-light);
}

.main .process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.main .process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 4px;
  background-color: var(--color-gray-light);
  border-radius: var(--radius-pill);
}

.main .process-step {
  position: relative;
  padding-left: 100px;
  margin-bottom: var(--space-xl);
}

.main .process-step:last-child {
  margin-bottom: 0;
}

.main .process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.main .process-content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.main .process-content h3 {
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.main .process-content p {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.main .process-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-xxl) 0;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.main .testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--color-accent);
  opacity: 0.05;
  border-radius: 50%;
}

.main .testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--color-secondary);
  opacity: 0.05;
  border-radius: 50%;
}

.main .testimonials .section-header h2 {
  color: var(--color-light);
}

.main .testimonials .section-description {
  color: var(--color-gray-light);
}

.main .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.main .testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.main .testimonial-card:hover {
  transform: translateY(-8px);
}

.main .testimonial-content {
  padding: var(--space-lg);
  position: relative;
}

.main .testimonial-content i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.main .testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.main .testimonial-rating {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-gray-light);
}

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-sm);
  border: 3px solid white;
}

.main .testimonial-info h4 {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

.main .testimonial-info p {
  margin-bottom: 0;
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

/* Resources Section */
.main .resources {
  padding: var(--space-xxl) 0;
  background-color: var(--color-light);
}

.main .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.main .resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.main .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.main .resource-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.main .resource-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.main .resource-card p {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.main .resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: auto;
}

/* Contact Section */
.main .contact {
  padding: var(--space-xxl) 0;
  background-color: var(--color-secondary);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.main .contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--color-dark);
  opacity: 0.1;
  border-radius: 50%;
}

.main .contact::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: 50%;
}

.main .contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.main .contact-content h2 {
  color: var(--color-light);
}

.main .contact-content p {
  color: rgba(255, 255, 255, 0.8);
}

.main .contact-features {
  margin-top: var(--space-lg);
}

.main .contact-feature {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.main .contact-feature i {
  font-size: var(--icon-md);
  margin-right: var(--space-sm);
  color: var(--color-light);
}

.main .contact-feature p {
  margin-bottom: 0;
}

.main .contact-form-container {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.main .contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.main .form-group {
  display: flex;
  flex-direction: column;
}

.main .form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-dark);
}

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-light);
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

.main .form-privacy {
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
}

.main .form-privacy label {
  margin-bottom: 0;
  font-size: var(--fs-xxs);
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-md);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.main .cookie-banner.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

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

.main .cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

.main .cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

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

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .main .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .main .hero-content {
    text-align: center;
    order: 2;
  }
  
  .main .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    order: 1;
  }
  
  .main .posts-grid,
  .main .methodology-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .main .contact-content {
    text-align: center;
  }
  
  .main .contact-feature {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .main .posts-grid,
  .main .methodology-grid,
  .main .testimonials-grid,
  .main .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .main .process-timeline::before {
    left: 30px;
  }
  
  .main .process-step {
    padding-left: 80px;
  }
  
  .main .process-number {
    width: 60px;
    height: 60px;
    font-size: var(--fs-md);
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer Styles */
.footer {
  position: relative;
  padding: var(--space-xl) 0 var(--space-md);
  font-family: var(--font-primary);
  color: var(--color-light);
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
}

.footer__wave svg {
  width: 100%;
  height: 100%;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

.footer__description {
  font-size: var(--fs-xxs);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
  opacity: 0.9;
  max-width: 90%;
}

.footer__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-gray-light);
  position: relative;
  display: inline-block;
}

.footer__subtitle::before {
  content: "▶";
  font-size: 10px;
  color: var(--color-primary);
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__link {
  color: var(--color-light);
  font-size: var(--fs-xxs);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-xs);
}

.footer__link:hover {
  color: var(--color-accent);
  transform: translateX(3px);
  text-decoration: none;
}

.footer__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer__link:hover::before {
  background-color: var(--color-primary);
  opacity: 1;
}

.footer__link--small {
  font-size: calc(var(--fs-xxs) - 1px);
  opacity: 0.8;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer__copyright {
  font-size: calc(var(--fs-xxs) - 1px);
  opacity: 0.7;
}

.footer__controller-icon {
  display: flex;
  gap: 8px;
  margin-top: var(--space-sm);
}

.controller-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-normal);
}

.controller-button:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.controller-button--x {
  background-color: var(--color-primary);
}

.controller-button--x::after {
  content: "X";
  font-size: 12px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.controller-button--circle {
  background-color: var(--color-secondary);
}

.controller-button--circle::after {
  content: "O";
  font-size: 12px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.controller-button--square {
  background-color: var(--color-gray);
}

.controller-button--square::after {
  content: "□";
  font-size: 12px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.controller-button--triangle {
  background-color: var(--color-accent);
}

.controller-button--triangle::after {
  content: "△";
  font-size: 12px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
}

.footer__pixel-art {
  display: flex;
  gap: 4px;
}

.pixel {
  width: 8px;
  height: 8px;
  display: inline-block;
  animation: pixelPulse 3s infinite alternate;
}

.pixel--1 {
  background-color: var(--color-primary);
  animation-delay: 0s;
}

.pixel--2 {
  background-color: var(--color-secondary);
  animation-delay: 0.2s;
}

.pixel--3 {
  background-color: var(--color-accent);
  animation-delay: 0.4s;
}

.pixel--4 {
  background-color: var(--color-gray-light);
  animation-delay: 0.6s;
}

.pixel--5 {
  background-color: var(--color-gray);
  animation-delay: 0.8s;
}

.footer__joystick-decoration {
  position: absolute;
  bottom: 20px;
  right: 5%;
  z-index: 0;
  opacity: 0.15;
  transform: rotate(-15deg);
}

.joystick-base {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-gray);
  position: relative;
}

.joystick-stick {
  display: block;
  width: 20px;
  height: 40px;
  background-color: var(--color-gray-light);
  position: absolute;
  top: -30px;
  left: 30px;
  border-radius: 10px;
  animation: joystickMove 4s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes pixelPulse {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes joystickMove {
  0% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  
  .footer__info {
    grid-column: span 2;
    margin-bottom: var(--space-md);
  }
  
  .footer__description {
    max-width: 100%;
  }
  
  .footer__joystick-decoration {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer__info {
    grid-column: span 1;
  }
  
  .footer__navigation,
  .footer__resources,
  .footer__legal {
    margin-bottom: var(--space-md);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .footer__copyright {
    order: 2;
  }
  
  .footer__pixel-art {
    order: 1;
    margin-bottom: var(--space-xs);
    justify-content: center;
  }
  
  .footer__wave {
    height: 60px;
  }
}

/* Privacy Page Specific Styles */
.privacy-page {
  padding: var(--space-xl) 0;
}

.privacy-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--color-gray-light);
  padding-bottom: var(--space-md);
}

.privacy-page__header h1 {
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.privacy-page__header .lead {
  color: var(--color-gray);
}

.privacy-page__content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
}

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-sm);
}

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
  color: var(--color-dark);
}

.privacy-page__list {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
  list-style-type: disc;
}

.privacy-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.privacy-page__list li strong {
  color: var(--color-dark);
  font-weight: 600;
}

.privacy-page__contact {
  background-color: var(--color-light);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.privacy-page__contact p {
  margin-bottom: var(--space-xs);
}

.privacy-page__contact p strong {
  color: var(--color-secondary);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--fs-md);
  }
}

/* Terms of Service Page Styles */
.terms-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
  padding: var(--space-xl) 0;
}

.terms-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gray-light);
}

.terms-page__header h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.terms-page__updated {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  margin-top: var(--space-md);
}

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-page__section {
  margin-bottom: var(--space-xl);
}

.terms-page__section h2 {
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-size: var(--fs-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-gray-light);
  margin-bottom: var(--space-md);
}

.terms-page__section p {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-loose);
}

.terms-page__list {
  list-style-type: disc;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.terms-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-sm);
  }
}

.cookie-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
  padding: var(--space-lg) 0;
}

.cookie-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--color-gray-light);
  padding-bottom: var(--space-md);
}

.cookie-page__header h1 {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.cookie-page__header .lead {
  color: var(--color-gray);
  font-family: var(--font-secondary);
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
}

.cookie-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-page__subsection {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.cookie-page__subsection h3 {
  color: var(--color-dark);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.cookie-page p {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-loose);
  font-size: var(--fs-xs);
}

.cookie-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookie-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
  font-size: var(--fs-xs);
}

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-gray-light);
}

.cookie-page__update-info {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  text-align: right;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .cookie-page {
    padding: var(--space-md) 0;
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__list {
    margin-left: var(--space-md);
  }
}

.thank-page {
  padding: var(--space-xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-page__icon {
  margin-bottom: var(--space-md);
  background-color: var(--color-light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-primary);
}

.thank-page__title {
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.thank-page__message {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-weight: 500;
}

.thank-page__confirmation {
  margin-bottom: var(--space-lg);
}

.thank-page__response-time {
  margin-bottom: var(--space-lg);
  padding: var(--space-sm);
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  width: 100%;
}

.thank-page__response-time p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-gray);
}

.thank-page__action {
  margin-bottom: var(--space-lg);
}

.thank-page__button {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.thank-page__badge-container {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.thank-page__badge-container .badge {
  background-color: var(--color-gray-light);
  color: var(--color-dark);
}

@media screen and (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .thank-page__icon {
    width: 60px;
    height: 60px;
  }
  
  .thank-page__title {
    font-size: var(--fs-xl);
  }
  
  .thank-page__badge-container {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

/* Base Category Page Styles */
.category-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Hero Section */
.category-page__hero {
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
}

.category-page__hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.category-page__hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-light);
}

.category-page__hero .lead {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--color-gray-light);
}

.category-page__hero-image {
  margin-top: var(--space-lg);
  text-align: center;
}

.category-page__hero-img {
  max-width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Posts Grid Section */
.category-page__posts {
  padding: var(--space-xl) 0;
}

.category-page__posts h2 {
  margin-bottom: var(--space-xl);
}

.category-page__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* Post Card Styles */
.post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card h3 {
  font-size: var(--fs-md);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-md);
  flex-grow: 1;
  font-size: var(--fs-xs);
}

.post-card a {
  margin: 0 var(--space-md) var(--space-md);
  align-self: flex-start;
}

/* Additional Content Sections */
.category-page__content {
  padding: var(--space-xl) 0;
  margin: var(--space-xl) 0;
}

.category-page__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.category-page__content-text {
  flex: 1 1 500px;
}

.category-page__content-image {
  flex: 1 1 400px;
  text-align: center;
}

.content-image {
  max-width: 100%;
  max-height: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.category-page__content-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.content-list-item h4 {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
}

.content-list-item p {
  margin-left: var(--space-md);
}

/* Methodology Section */
.category-page__methodology {
  padding: var(--space-xl) 0;
}

.category-page__methodology-steps {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-lg);
}

.methodology-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.methodology-step-number {
  background-color: var(--color-accent);
  color: var(--color-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  font-weight: 700;
  flex-shrink: 0;
}

.methodology-step-content {
  flex-grow: 1;
}

.methodology-step-content h4 {
  margin-bottom: var(--space-xs);
}

.category-page__methodology-tips {
  margin-top: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.category-page__methodology-tips h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.methodology-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.methodology-tip h5 {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .methodology-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-lg) 0;
  }
  
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-tips-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__content-wrapper {
    flex-direction: column;
  }
  
  .methodology-step {
    flex-direction: column;
  }
  
  .methodology-step-number {
    margin-bottom: var(--space-xs);
  }
}

/* Base Page Styles */
.post-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Breadcrumbs */
.breadcrumbs--funda {
  padding: var(--space-sm) 0;
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-gray-light);
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

.breadcrumbs--funda a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--funda a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-hero--funda {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
}

.post-hero--funda h1 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  font-size: var(--fs-xxl);
  line-height: var(--lh-tight);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--funda .lead {
  font-size: var(--fs-md);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--color-gray-light);
  line-height: var(--lh-loose);
}

.post-hero--funda .badge {
  display: inline-block;
  margin-bottom: var(--space-md);
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}

/* Content Sections */
.content-section--funda-1 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.content-section--funda-1 .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.content-section--funda-1 .text-content {
  flex: 1;
}

.content-section--funda-1 .image-container {
  flex: 1;
}

.content-section--funda-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.content-section--funda-1 .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-section--funda-1 .analysis-list {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-section--funda-1 .analysis-list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

/* Second Content Section */
.content-section--funda-2 {
  background-color: var(--color-gray-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--funda-2 h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-dark);
}

.content-section--funda-2 .methodology-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-section--funda-2 .methodology-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--funda-2 .methodology-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--funda-2 .methodology-card h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-md);
}

.content-section--funda-2 .steps {
  margin-top: var(--space-md);
}

.content-section--funda-2 .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.content-section--funda-2 .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  margin-right: var(--space-sm);
  flex-shrink: 0;
  font-weight: 600;
}

.content-section--funda-2 .center-image {
  display: flex;
  justify-content: center;
  margin: var(--space-xl) 0;
}

.content-section--funda-2 .analysis-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Third Content Section */
.content-section--funda-3 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.content-section--funda-3 h2 {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
}

.content-section--funda-3 .evaluation-system {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-section--funda-3 .system-column h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.content-section--funda-3 .key-elements li,
.content-section--funda-3 .conclusion-list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.content-section--funda-3 .template-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.content-section--funda-3 .template-list {
  padding-left: var(--space-lg);
}

.content-section--funda-3 .template-list li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-xs);
}

.content-section--funda-3 .conclusion-box {
  background-color: var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.content-section--funda-3 .conclusion-box h3 {
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

/* Related Posts Section */
.related-posts--funda {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.related-posts--funda h2 {
  text-align: center;
  color: var(--color-light);
  margin-bottom: var(--space-xl);
}

.related-posts--funda .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-posts--funda .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-posts--funda .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-posts--funda .post-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-posts--funda .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.related-posts--funda .post-card:hover .post-image {
  transform: scale(1.05);
}

.related-posts--funda .post-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: var(--color-dark);
}

.related-posts--funda .post-content h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.related-posts--funda .post-content h3 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.related-posts--funda .post-content h3 a:hover {
  color: var(--color-primary);
}

.related-posts--funda .post-content p {
  margin-bottom: var(--space-md);
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  flex-grow: 1;
}

.related-posts--funda .post-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .content-section--funda-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--funda-2 .methodology-cards,
  .content-section--funda-3 .evaluation-system {
    grid-template-columns: 1fr;
  }
  
  .related-posts--funda .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-hero--funda {
    padding: var(--space-xl) 0;
  }
  
  .content-section--funda-1,
  .content-section--funda-2,
  .content-section--funda-3 {
    padding: var(--space-xl) 0;
  }
  
  .related-posts--funda .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .related-posts--funda .post-card {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* Main Page Styles */
.post-page {
  overflow-x: hidden;
}

/* Breadcrumbs */
.breadcrumbs--anali {
  padding: var(--space-sm) 0;
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-gray-light);
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

.breadcrumbs--anali a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--anali a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-hero--anali {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xl) 0;
  text-align: center;
}

.post-hero--anali .container {
  max-width: 900px;
}

.post-hero--anali h1 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  font-size: var(--fs-xxl);
}

.post-hero--anali .lead {
  font-size: var(--fs-md);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-normal);
  color: var(--color-gray-light);
}

.post-hero--anali .hero-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.post-hero--anali .badge {
  background-color: var(--color-accent);
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

/* Content Section 1 */
.content-section--anali-1 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.content-section--anali-1 .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.content-section--anali-1 h2 {
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  position: relative;
}

.content-section--anali-1 h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: var(--space-xs);
}

.content-section--anali-1 p {
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  line-height: var(--lh-loose);
}

.content-section--anali-1 .feature-list {
  margin-bottom: var(--space-md);
  list-style: none;
}

.content-section--anali-1 .feature-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--lh-normal);
}

.content-section--anali-1 .feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.content-section--anali-1 .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 2 */
.content-section--anali-2 {
  background-color: var(--color-gray-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--anali-2 h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-dark);
}

.content-section--anali-2 h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.content-section--anali-2 .analysis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.content-section--anali-2 .analysis-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background-color: white;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--anali-2 .analysis-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--anali-2 .analysis-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.content-section--anali-2 .analysis-card p {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  margin-bottom: 0;
}

.content-section--anali-2 .analysis-process {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.content-section--anali-2 .numbered-steps {
  list-style: none;
  counter-reset: steps;
  margin-top: var(--space-md);
}

.content-section--anali-2 .numbered-steps li {
  counter-increment: steps;
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
}

.content-section--anali-2 .numbered-steps li:before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--fs-xxs);
}

.content-section--anali-2 .full-width-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

/* Content Section 3 */
.content-section--anali-3 {
  background-color: white;
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--anali-3 h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-dark);
}

.content-section--anali-3 .tools-resources {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.content-section--anali-3 h3 {
  color: var(--color-secondary);
  margin: var(--space-md) 0 var(--space-sm);
}

.content-section--anali-3 .resources-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
}

.content-section--anali-3 .resources-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.content-section--anali-3 .pro-tip {
  background-color: var(--color-accent);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.content-section--anali-3 .pro-tip h4 {
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  font-size: var(--fs-sm);
}

.content-section--anali-3 .pro-tip p {
  margin-bottom: 0;
}

.content-section--anali-3 .side-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-section--anali-3 .conclusion {
  background-color: var(--color-gray-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.content-section--anali-3 .conclusion h3 {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.content-section--anali-3 .conclusion-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.content-section--anali-3 .conclusion-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.content-section--anali-3 .point-number {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.content-section--anali-3 .conclusion-point p {
  margin-bottom: 0;
  line-height: var(--lh-normal);
}

/* Related Posts */
.related-posts--anali {
  background-color: var(--color-dark);
  padding: var(--space-xxl) 0;
  color: var(--color-light);
}

.related-posts--anali h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-light);
}

.related-posts--anali .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-posts--anali .post-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--anali .post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.related-posts--anali .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--anali .card-content {
  padding: var(--space-md);
}

.related-posts--anali .card-content h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
  line-height: var(--lh-tight);
}

.related-posts--anali .card-content p {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.related-posts--anali .btn-outline {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  padding: var(--space-xxs) var(--space-sm);
  font-size: var(--fs-xxs);
}

.related-posts--anali .btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .content-section--anali-1 .content-grid,
  .content-section--anali-3 .tools-resources {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .content-section--anali-2 .analysis-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-posts--anali .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-hero--anali {
    padding: var(--space-lg) 0;
  }
  
  .content-section--anali-1,
  .content-section--anali-2,
  .content-section--anali-3,
  .related-posts--anali {
    padding: var(--space-xl) 0;
  }
  
  .content-section--anali-2 .analysis-cards,
  .content-section--anali-3 .conclusion-points,
  .related-posts--anali .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section--anali-1 .section-image,
  .content-section--anali-3 .side-image {
    max-height: 300px;
  }
}

/* Base Styles for this specific page */
.post-educacion-medios-interactivos-espana {
  overflow-x: hidden;
}

/* Breadcrumbs */
.breadcrumbs--tecni {
  background-color: var(--color-light);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

.breadcrumbs--tecni a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.breadcrumbs--tecni a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-hero--tecni {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-hero--tecni h1 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  max-width: 90%;
}

.post-hero--tecni .lead {
  color: var(--color-gray-light);
  max-width: 800px;
  margin-bottom: var(--space-lg);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero-badges .badge {
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}

/* Content Section 1 */
.content-section--tecni-1 {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: var(--space-xxl) 0;
  position: relative;
}

.content-flex {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 45%;
}

.section-image {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Content Section 2 */
.content-section--tecni-2 {
  background-color: var(--color-gray-light);
  color: var(--color-dark);
  padding: var(--space-xxl) 0;
  position: relative;
}

.terminology-box {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.terminology-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.terminology-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-gray-light);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

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

.style-tips {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.tips-image {
  flex: 0 0 45%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tips-content {
  flex: 1;
}

.tips-content ol {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.tips-content li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

/* Content Section 3 */
.content-section--tecni-3 {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: var(--space-xxl) 0;
  position: relative;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.approach-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-item h5 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.approach-item p {
  margin-bottom: 0;
  font-size: var(--fs-xxs);
}

.contemporary-approach {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.conclusion {
  background-color: var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0 var(--space-lg);
}

.conclusion-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.conclusion-list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

/* Related Posts */
.related-posts--tecni {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.related-posts--tecni h2 {
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-md);
  color: var(--color-dark);
}

.card-content h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-tight);
}

.card-content p {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.card-content .btn {
  width: 100%;
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .content-flex, .style-tips {
    flex-direction: column;
  }
  
  .content-image, .tips-image {
    flex: 0 0 100%;
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .post-hero--tecni {
    padding: var(--space-xl) 0;
  }
  
  .content-section--tecni-1,
  .content-section--tecni-2,
  .content-section--tecni-3,
  .related-posts--tecni {
    padding: var(--space-xl) 0;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-hero--tecni h1 {
    font-size: var(--fs-xl);
  }
}

/* Interactive Elements */
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-light);
  text-decoration: none;
}

.post-card:focus-within {
  outline: 3px solid var(--color-primary);
}

.approach-item:focus-within {
  outline: 2px solid var(--color-secondary);
}

/* Accessibility */
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Base Page Styles */
.post-educacion-medios-interactivos {
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: var(--font-primary);
  line-height: var(--lh-normal);
}

/* Breadcrumbs */
.breadcrumbs--educa {
  background-color: var(--color-light);
  padding: var(--space-sm) 0;
  font-size: var(--fs-xxs);
  border-bottom: 1px solid var(--color-gray-light);
}

.breadcrumbs--educa a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--educa a:hover {
  color: var(--color-primary);
}

.breadcrumbs--educa span {
  color: var(--color-dark);
  font-weight: 500;
}

/* Hero Section */
.post-hero--educa {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-hero--educa .badge {
  display: inline-block;
  margin-bottom: var(--space-sm);
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.post-hero--educa h1 {
  color: var(--color-light);
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  max-width: 900px;
}

.post-hero--educa .lead {
  font-size: var(--fs-md);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  max-width: 800px;
  color: var(--color-gray-light);
  line-height: var(--lh-normal);
}

.post-hero--educa .hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 1 - Formación Académica */
.content-section--educa-1 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--educa-1 .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.content-section--educa-1 .section-text {
  flex: 1;
}

.content-section--educa-1 h2 {
  color: var(--color-dark);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.content-section--educa-1 h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-top: var(--space-xs);
}

.content-section--educa-1 h3 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-section--educa-1 p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
}

.content-section--educa-1 .section-image-container {
  flex: 0 0 45%;
}

.content-section--educa-1 .section-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.resource-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  position: relative;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.icon-text .icon {
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* Content Section 2 - Plataformas Online */
.content-section--educa-2 {
  background-color: var(--color-gray-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--educa-2 h2 {
  color: var(--color-dark);
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.content-section--educa-2 h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--space-xs) auto 0;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.resource-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-card h3 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gray-light);
  padding-bottom: var(--space-xs);
}

.resource-card p {
  margin-bottom: var(--space-md);
}

.testimonial-container {
  margin-top: var(--space-xl);
}

.testimonial--educa {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial--educa:before {
  content: """;
  font-family: var(--font-secondary);
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 100px;
  color: var(--color-accent);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--fs-xs);
  margin-bottom: var(--space-xxs);
  color: var(--color-dark);
}

.testimonial-position {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

/* Content Section 3 - Comunidades y Eventos */
.content-section--educa-3 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--educa-3 h2 {
  color: var(--color-dark);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

.content-section--educa-3 h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-top: var(--space-xs);
}

.content-section--educa-3 > .container > p {
  font-size: var(--fs-sm);
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.event-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.event-item:hover {
  transform: translateY(-5px);
}

.event-item h3 {
  color: var(--color-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gray-light);
  padding-bottom: var(--space-xs);
}

.conclusion-box {
  background-color: var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.conclusion-box h3 {
  color: var(--color-dark);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.cta-box--educa {
  background-color: var(--color-secondary);
  color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.cta-box--educa h3 {
  color: var(--color-light);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.cta-box--educa p {
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-light);
  font-size: var(--fs-sm);
}

.cta-box--educa .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
}

/* Related Posts Section */
.related-posts--educa {
  background-color: var(--color-dark);
  padding: var(--space-xxl) 0;
  color: var(--color-light);
}

.related-posts--educa h2 {
  color: var(--color-light);
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.related-posts--educa h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  margin: var(--space-xs) auto 0;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-card-image-container {
  height: 200px;
  overflow: hidden;
}

.post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-card:hover .post-card-image {
  transform: scale(1.05);
}

.post-card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-title {
  color: var(--color-dark);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.post-card-excerpt {
  color: var(--color-gray);
  font-size: var(--fs-xxs);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
  flex-grow: 1;
}

.post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .content-section--educa-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--educa-1 .section-image-container {
    width: 100%;
    margin-top: var(--space-lg);
  }
  
  .cards-container,
  .events-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-hero--educa {
    padding: var(--space-xl) 0;
  }
  
  .post-hero--educa h1 {
    font-size: var(--fs-xl);
  }
  
  .post-hero--educa .lead {
    font-size: var(--fs-sm);
  }
  
  .content-section--educa-1,
  .content-section--educa-2,
  .content-section--educa-3,
  .related-posts--educa {
    padding: var(--space-xl) 0;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-box--educa {
    padding: var(--space-lg);
  }
}

/* Base Styles for Landing Page */
.post-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Breadcrumbs */
.breadcrumbs--herra {
  padding: var(--space-sm) 0;
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-gray-light);
  font-size: var(--fs-xxs);
}

.breadcrumbs--herra a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.breadcrumbs--herra a:hover {
  color: var(--color-primary);
}

.breadcrumbs--herra span {
  color: var(--color-dark);
  font-weight: 500;
}

/* Hero Section */
.post-hero--herra {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xl) 0;
  text-align: center;
}

.post-hero--herra h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--herra .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--herra .hero-badges {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-top: var(--space-md);
}

.post-hero--herra .badge {
  background-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}

/* Content Section 1 */
.content-section--herra-1 {
  background-color: white;
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--herra-1 .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.content-section--herra-1 .text-content {
  flex: 1;
  min-width: 300px;
}

.content-section--herra-1 .image-container {
  flex: 1;
  min-width: 300px;
}

.content-section--herra-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.content-section--herra-1 h3 {
  color: var(--color-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.content-section--herra-1 .tool-list ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.content-section--herra-1 .tool-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.content-section--herra-1 .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Content Section 2 */
.content-section--herra-2 {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--herra-2 h2 {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.content-section--herra-2 .frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.content-section--herra-2 .framework-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--herra-2 .framework-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.content-section--herra-2 .framework-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.content-section--herra-2 .framework-card p {
  margin-bottom: var(--space-md);
  min-height: 100px;
}

.content-section--herra-2 .quote-box {
  background-color: var(--color-gray-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

.content-section--herra-2 blockquote {
  font-style: italic;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.content-section--herra-2 cite {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  font-weight: 500;
}

.content-section--herra-2 .section-image {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) auto 0;
  box-shadow: var(--shadow-md);
}

/* Content Section 3 */
.content-section--herra-3 {
  background-color: white;
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.content-section--herra-3 h2 {
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.content-section--herra-3 .tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.content-section--herra-3 .tool-category h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-gray-light);
}

.content-section--herra-3 .tool-features {
  list-style-type: none;
  padding: 0;
}

.content-section--herra-3 .tool-features li {
  padding: var(--space-xs) 0;
  margin-bottom: var(--space-xs);
}

.content-section--herra-3 .cta-box {
  background-color: var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  text-align: center;
}

.content-section--herra-3 .cta-box h3 {
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.content-section--herra-3 .cta-box p {
  margin-bottom: var(--space-md);
}

.content-section--herra-3 .conclusion {
  margin-top: var(--space-xl);
}

.content-section--herra-3 .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.content-section--herra-3 .key-takeaways {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.content-section--herra-3 .key-takeaways h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.content-section--herra-3 .key-takeaways ul {
  padding-left: var(--space-md);
}

.content-section--herra-3 .key-takeaways li {
  margin-bottom: var(--space-xs);
}

.content-section--herra-3 .section-image {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) auto 0;
  box-shadow: var(--shadow-md);
}

/* Related Posts */
.related-posts--herra {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
  color: var(--color-dark);
}

.related-posts--herra h2 {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
}

.related-posts--herra .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.related-posts--herra .post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--herra .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-posts--herra .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--herra .card-content {
  padding: var(--space-md);
}

.related-posts--herra .card-content h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.related-posts--herra .card-content p {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.related-posts--herra .btn-outline {
  width: 100%;
  text-align: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .post-hero--herra h1 {
    font-size: var(--fs-xl);
  }
  
  .post-hero--herra .lead {
    font-size: var(--fs-sm);
  }
  
  .content-section--herra-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--herra-1 .image-container {
    order: -1;
  }
  
  .related-posts--herra .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-hero--herra {
    padding: var(--space-lg) 0;
  }
  
  .content-section--herra-1,
  .content-section--herra-2,
  .content-section--herra-3,
  .related-posts--herra {
    padding: var(--space-xl) 0;
  }
  
  .content-section--herra-2 .frameworks-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section--herra-3 .tools-container {
    grid-template-columns: 1fr;
  }
  
  .related-posts--herra .posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.privacy-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: var(--font-primary);
}

.privacy-page__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.privacy-page__header h1 {
  color: var(--color-dark);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.privacy-page__header .lead {
  color: var(--color-gray);
  font-weight: 500;
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-gray-light);
}

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
}

.privacy-page__list {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.privacy-page__list li strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.privacy-page__contact-info {
  background-color: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

.privacy-page__contact-info p {
  margin-bottom: var(--space-xs);
}

.privacy-page__contact-info strong {
  color: var(--color-secondary);
}

@media screen and (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__section {
    padding: var(--space-md);
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__list {
    padding-left: var(--space-md);
  }
}

.terms-page {
  font-family: var(--font-primary);
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: var(--space-xl) 0;
}

.terms-page__container {
  max-width: 800px;
  margin: 0 auto;
}

.terms-page__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.terms-page__last-updated {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--fs-xxs);
  color: var(--color-gray);
}

.terms-page__section {
  margin-bottom: var(--space-xl);
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

.terms-page__section-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-gray-light);
  padding-bottom: var(--space-xs);
}

.terms-page p {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-sm);
}

.terms-page__list {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.terms-page__list li {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

@media screen and (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__title {
    font-size: var(--fs-lg);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-sm);
  }
}

.disclaimer-page {
  padding: var(--space-lg) 0;
  font-family: var(--font-primary);
}

.disclaimer-page__title {
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
}

.disclaimer-page__content {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.disclaimer-page__section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-light);
}

.disclaimer-page__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.disclaimer-page__section-title {
  color: var(--color-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.disclaimer-page__text {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.disclaimer-page__text strong {
  font-weight: 600;
  color: var(--color-primary);
}

.disclaimer-page__contact-list {
  list-style-type: none;
  padding-left: var(--space-sm);
  margin-bottom: var(--space-md);
}

.disclaimer-page__contact-item {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.disclaimer-page__contact-item strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.disclaimer-page__update-text {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  margin-top: var(--space-md);
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .disclaimer-page__title {
    font-size: var(--fs-lg);
  }
  
  .disclaimer-page__section-title {
    font-size: var(--fs-sm);
  }
  
  .disclaimer-page__content {
    padding: var(--space-md);
  }
  
  .disclaimer-page__text {
    font-size: var(--fs-xxs);
  }
  
  .disclaimer-page__contact-item {
    font-size: var(--fs-xxs);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  background-color: var(--color-light);
  padding: var(--space-xl) 0;
  font-family: var(--font-primary);
  color: var(--color-dark);
}

.cookie-page__container {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-page__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  text-align: center;
  font-weight: 700;
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-page__section:last-of-type {
  border-bottom: none;
}

.cookie-page__heading {
  font-family: var(--font-secondary);
  font-size: var(--fs-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.cookie-page__subheading {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  color: var(--color-dark);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.cookie-page__text {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-sm);
}

.cookie-page__list {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.cookie-page__list-item {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xs);
}

.cookie-page__content {
  padding-left: var(--space-sm);
}

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-gray-light);
}

.cookie-page__updated {
  font-size: var(--fs-xxs);
  color: var(--color-gray);
  text-align: center;
  font-style: italic;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .cookie-page {
    padding: var(--space-lg) 0;
  }
  
  .cookie-page__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__heading {
    font-size: var(--fs-sm);
  }
  
  .cookie-page__subheading {
    font-size: var(--fs-xs);
  }
  
  .cookie-page__content {
    padding-left: 0;
  }
}

.thank-page {
  padding: var(--space-xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.thank-page__header {
  margin-bottom: var(--space-lg);
}

.thank-page__header h1 {
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.thank-page__header .badge {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.thank-page__message {
  margin-bottom: var(--space-lg);
}

.thank-page__message .lead {
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.thank-page__message p {
  color: var(--color-dark);
  line-height: var(--lh-loose);
}

.thank-page__message strong {
  color: var(--color-primary);
  font-weight: 600;
}

.thank-page__next-steps {
  background-color: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-accent);
}

.thank-page__next-steps h3 {
  color: var(--color-dark);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.thank-page__next-steps p {
  margin-bottom: 0;
}

.thank-page__action {
  margin-top: var(--space-lg);
}

.thank-page__action .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .thank-page__header h1 {
    font-size: var(--fs-xl);
  }
  
  .thank-page__next-steps {
    padding: var(--space-sm);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: var(--space-xxl) var(--space-md);
    background-color: var(--color-light);
  }
  
  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .error-404__icon {
    position: relative;
    margin-bottom: var(--space-xl);
  }
  
  .error-404__code {
    font-family: var(--font-secondary);
    font-size: 9rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.05em;
    display: block;
    margin-bottom: var(--space-md);
    text-shadow: 3px 3px 0 var(--color-gray-light);
    transition: transform var(--transition-normal);
  }
  
  .error-404__code:hover {
    transform: translateY(-5px);
  }
  
  .error-404__controller {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 40px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .error-404__controller:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
  }
  
  .error-404__title {
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lg);
  }
  
  .error-404__message {
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    max-width: 90%;
  }
  
  .error-404__button {
    position: relative;
    padding: var(--space-xs) var(--space-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .error-404__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .error-404__home-icon:before {
    content: "⌂";
    margin-right: var(--space-xs);
  }
  
  /* Media Queries */
  @media screen and (max-width: 767px) {
    .error-404 {
      padding: var(--space-xl) var(--space-sm);
      min-height: 70vh;
    }
    
    .error-404__code {
      font-size: 7rem;
    }
    
    .error-404__controller {
      width: 30px;
      height: 18px;
      right: -10px;
    }
    
    .error-404__message {
      font-size: var(--fs-xs);
      max-width: 100%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .error-404__code {
      font-size: 5rem;
    }
    
    .error-404__controller {
      width: 24px;
      height: 14px;
      right: -5px;
    }
    
    .error-404__title {
      font-size: var(--fs-md);
    }
  }
