:root {
  /* Триадная цветовая схема */
  --primary-color: #3498db; /* Синий */
  --secondary-color: #e74c3c; /* Красный */
  --tertiary-color: #2ecc71; /* Зеленый */
  
  /* Оттенки и вариации основных цветов */
  --primary-dark: #2980b9;
  --primary-light: #a9cce3;
  --secondary-dark: #c0392b;
  --secondary-light: #f5b7b1;
  --tertiary-dark: #27ae60;
  --tertiary-light: #abebc6;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #000000;
  
  /* Функциональные цвета */
  --text-color: #333333;
  --text-light: #666666;
  --link-color: var(--primary-color);
  --link-hover: var(--primary-dark);
  --header-bg: var(--white);
  --footer-bg: #1a1a1a;
  --footer-text: var(--white);
  
  /* Размеры и радиусы */
  --border-radius: 8px;
  --button-radius: 50px;
  --card-radius: 12px;
  --container-width: 1200px;
  
  /* Тени */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --button-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* Анимация */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-gray);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--link-hover);
}

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

ul {
  list-style: none;
}

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

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--button-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--button-shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover, button:hover, input[type='submit']:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
}

/* Section Styles */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

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

.logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.logo p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.nav-desktop ul {
  display: flex;
  gap: 25px;
}

.nav-desktop a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  padding-bottom: 5px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover {
  color: var(--primary-color);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
}

.nav-mobile.active {
  transform: translateY(0);
}

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

.nav-mobile a {
  display: block;
  padding: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--text-color);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav-mobile a:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease-out;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.6s ease-out;
}

/* Historia Section */
.historia {
  background-color: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 60px;
  width: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
  margin-left: 50%;
}

.timeline-date {
  position: absolute;
  top: 0;
  right: calc(100% + 30px);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.timeline-item:nth-child(even) .timeline-date {
  right: auto;
  left: calc(100% + 30px);
}

.timeline-date h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.timeline-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  width: 100%;
}

.timeline-img {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.timeline-content p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Misión Section */
.mision {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
}

.mision .section-title {
  color: var(--white);
}

.mision .section-title::after {
  background-color: var(--white);
}

.mision-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.mision-item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mision-item:hover {
  transform: translateY(-10px);
}

.mision-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.mision-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.mision-item h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.mision-item p {
  color: var(--white);
  line-height: 1.7;
}

.mision-objetivos {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.mision-objetivos h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
}

.mision-objetivos ul {
  list-style-type: disc;
  padding-left: 20px;
}

.mision-objetivos li {
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.7;
}

/* Servicios Section */
.servicios {
  background-color: var(--white);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.card-content {
  padding: 30px;
  text-align: center;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.card-content p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Enlaces Section */
.enlaces {
  background-color: var(--light-gray);
}

.enlaces-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.enlaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.enlace-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal);
}

.enlace-card:hover {
  transform: translateY(-5px);
}

.enlace-card h3 {
  margin-bottom: 15px;
}

.enlace-card a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.enlace-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.enlace-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonios Section */
.testimonios {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.testimonios .section-title {
  color: var(--white);
}

.testimonios .section-title::after {
  background-color: var(--white);
}

.testimonios-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonio {
  padding: 20px;
}

.testimonio-content {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.testimonio-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

.testimonio-content p::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, serif;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonio-autor img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}

.testimonio-autor div {
  text-align: left;
}

.testimonio-autor h4 {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.testimonio-autor p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.testimonios-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonios-nav button {
  background-color: transparent;
  border: 2px solid var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: none;
  padding: 0;
}

.testimonios-nav button:hover {
  background-color: var(--white);
  transform: none;
}

.testimonios-nav button span {
  display: block;
  width: 15px;
  height: 15px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transition: border-color var(--transition-fast);
}

.testimonios-nav button:hover span {
  border-color: var(--primary-color);
}

.testimonios-nav .prev span {
  transform: rotate(45deg);
  margin-left: 5px;
}

.testimonios-nav .next span {
  transform: rotate(-135deg);
  margin-right: 5px;
}

/* Reconocimientos Section */
.reconocimientos {
  background-color: var(--white);
}

.reconocimientos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.reconocimiento-item {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reconocimiento-item:hover {
  transform: translateY(-10px);
}

.reconocimiento-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.reconocimiento-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reconocimiento-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.reconocimiento-item p {
  color: var(--text-color);
  line-height: 1.7;
}

.estadisticas {
  background-color: var(--primary-color);
  padding: 60px;
  border-radius: var(--card-radius);
  color: var(--white);
  text-align: center;
}

.estadisticas h3 {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.estadisticas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.estadistica-item {
  padding: 20px;
}

.estadistica-numero {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
}

.estadistica-texto {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contacto Section */
.contacto {
  background-color: var(--light-gray);
}

.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contacto-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contacto-item {
  margin-bottom: 30px;
}

.contacto-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contacto-item p {
  color: var(--text-color);
  line-height: 1.7;
}

.contacto-mapa {
  grid-column: span 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contacto-mapa img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contacto-oficinas {
  grid-column: span 2;
}

.contacto-oficinas h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contacto-oficinas ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contacto-oficinas li {
  color: var(--text-color);
  line-height: 1.7;
}

.contacto-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.contacto-form h3 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--light-gray);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--medium-gray);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a,
.footer-nav-col li {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-social ul {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: var(--primary-color);
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  color: var(--white);
  margin-right: 30px;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  background-color: var(--light-gray);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease;
}

.success-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  color: var(--tertiary-color);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.success-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Content Pages (About, Privacy, Terms) */
.page-content {
  padding-top: 100px; /* Space for fixed header */
  padding-bottom: 80px;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.page-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.page-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Media Queries */
@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
    margin-left: 0;
  }
  
  .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
    right: auto;
  }
  
  .contacto-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contacto-info {
    order: 2;
  }
  
  .contacto-form {
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .hero {
    padding: 150px 0 100px;
  }
  
  .mision-content {
    flex-direction: column;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-social {
    margin-bottom: 20px;
  }
  
  .footer-social ul {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .contacto-info {
    grid-template-columns: 1fr;
  }
  
  .contacto-oficinas ul {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .estadisticas {
    padding: 40px 20px;
  }
  
  .estadisticas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .mision-objetivos {
    padding: 30px 20px;
  }
  
  .testimonio-content {
    padding: 30px 20px;
  }
  
  .contacto-form {
    padding: 30px 20px;
  }
  
  .reconocimientos-grid {
    grid-template-columns: 1fr;
  }
}