/* Base Variables and Reset */
:root {
  /* Color Scheme - Triadic */
  --primary-color: #0066cc;
  --primary-dark: #004a94;
  --primary-light: #4d94ff;
  --secondary-color: #cc0066;
  --secondary-dark: #990050;
  --secondary-light: #ff4d94;
  --tertiary-color: #66cc00;
  --tertiary-dark: #4a9400;
  --tertiary-light: #94ff4d;
  
  /* Neutral Colors */
  --dark: #282828;
  --dark-gray: #4a4a4a;
  --mid-gray: #888888;
  --light-gray: #e0e0e0;
  --very-light-gray: #f5f5f5;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 3px;
  --border-radius-md: 6px;
  --border-radius-lg: 12px;
  
  /* Box Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

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

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

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

/* Button Styles - Global */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  background-color: var(--primary-color);
  color: var(--white);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Section Styles */
.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: var(--space-sm) auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: var(--space-xl);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

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

.logo img {
  max-height: 60px;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop ul li {
  margin-left: var(--space-lg);
}

.nav-desktop ul li a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.nav-mobile {
  display: none;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  transition: all var(--transition-medium);
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
  animation: slideDown var(--transition-medium);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  margin: var(--space-sm) 0;
  text-align: center;
}

.mobile-menu ul li a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  padding: var(--space-sm) 0;
}

.mobile-menu ul li a:hover {
  color: var(--primary-color);
}

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

/* Hero Section */
.hero {
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: backwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: backwards;
}

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

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

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

.timeline:before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: var(--space-lg) 0;
  position: relative;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: var(--space-lg);
  background-color: var(--very-light-gray);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

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

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.timeline-image {
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

.vision-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.vision-text {
  flex: 1;
  min-width: 300px;
}

.vision-text p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.vision-values {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
  margin-bottom: var(--space-md);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.value-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Recursos Section */
.recursos {
  background-color: var(--very-light-gray);
}

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

.recurso-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.recurso-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.recurso-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* Noticias Section */
.noticias {
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.news-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.news-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.news-content h3 {
  color: var(--dark);
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.news-card:hover .news-content h3 {
  color: var(--primary-color);
}

.news-content p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  transition: all var(--transition-fast);
}

.read-more:after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.news-pagination a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: var(--border-radius-sm);
  background-color: var(--very-light-gray);
  color: var(--dark);
  transition: all var(--transition-fast);
}

.news-pagination a.active,
.news-pagination a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Eventos Section */
.eventos {
  background-color: var(--very-light-gray);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.event-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  display: flex;
  height: 100%;
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-md);
  margin-right: var(--space-md);
  padding: var(--space-sm);
  text-align: center;
  flex-shrink: 0;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-content {
  flex-grow: 1;
}

.event-content h3 {
  color: var(--dark);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.event-card:hover .event-content h3 {
  color: var(--primary-color);
}

.event-location {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.icon-location {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url('image/icon-location.jpg');
  background-size: contain;
  background-repeat: no-repeat;
}

.event-content p {
  margin-bottom: var(--space-md);
}

/* Galería Section */
.galeria {
  background-color: var(--white);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.gallery-tab {
  background: none;
  border: none;
  padding: var(--space-sm) var(--space-md);
  margin: 0 var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.gallery-tab.active,
.gallery-tab:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Partners Section */
.socios {
  background-color: var(--very-light-gray);
  text-align: center;
}

.partners-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.partner-item {
  width: 200px;
  height: 100px;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-medium);
}

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

.partner-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--transition-medium);
}

.partner-item:hover img {
  filter: grayscale(0%);
}

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

.careers-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.careers-text {
  flex: 1;
  min-width: 300px;
}

.careers-text p {
  margin-bottom: var(--space-md);
}

.careers-text h3 {
  color: var(--white);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.careers-text ul {
  list-style-type: none;
  margin-bottom: var(--space-lg);
}

.careers-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
}

.careers-text ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tertiary-light);
}

.careers-positions {
  flex: 1;
  min-width: 300px;
}

.position-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition-medium);
}

.position-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.position-card h3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.position-location {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

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

/* Contact Section */
.contacto {
  background-color: var(--white);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info .section-title:after {
  margin-left: 0;
}

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

.contact-item {
  display: flex;
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  margin-right: var(--space-md);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-text h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

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

.form-group {
  margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

/* Footer Section */
.footer {
  background-color: var(--dark);
  color: var(--light-gray);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  margin-bottom: var(--space-md);
  max-width: 200px;
}

.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.social-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
  text-decoration: underline;
}

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

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

.newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  border-top-left-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  font-family: var(--font-body);
}

.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: var(--white) !important;
  padding: 15px !important;
  text-align: center !important;
}

#accept-cookies {
  background-color: var(--tertiary-color) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 8px 16px !important;
  margin-top: 10px !important;
  cursor: pointer !important;
  border-radius: var(--border-radius-sm) !important;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

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

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: var(--space-lg);
}

.success-title {
  margin-bottom: var(--space-md);
}

.success-message {
  margin-bottom: var(--space-lg);
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.privacy-content h3,
.terms-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.privacy-content p,
.terms-content p {
  margin-bottom: var(--space-md);
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--space-xs);
}

/* About Page */
.about-page {
  padding-top: 100px;
}

.about-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.about-hero-content {
  max-width: 800px;
  padding: var(--space-md);
}

.about-section {
  margin-bottom: var(--space-xl);
}

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

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  margin-bottom: var(--space-xs);
}

.team-position {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.team-bio {
  margin-bottom: var(--space-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.3rem;
  }
  
  .timeline:before {
    left: 60px;
  }
  
  .timeline-content {
    width: calc(100% - 90px);
    margin-left: 90px !important;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .burger-menu {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .contact-wrapper,
  .careers-content {
    flex-direction: column;
  }
  
  .news-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.1rem;
  }
  
  .timeline-content {
    padding: var(--space-md);
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .gallery-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-tab {
    margin-bottom: var(--space-xs);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-sm);
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius-sm);
  }
}

html,body{
  overflow-x: hidden;
}