:root {
  /* Color Palette */
  --primary-color: #3f51b5;
  --primary-dark: #303f9f;
  --primary-light: #c5cae9;
  --secondary-color: #ff5722;
  --secondary-dark: #e64a19;
  --secondary-light: #ffccbc;
  
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #bdbdbd;
  --neutral-500: #9e9e9e;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --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.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  --glass-blur: 8px;
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  color: var(--neutral-900);
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-weight: 700;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--neutral-700);
  font-size: 1.1rem;
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(63, 81, 181, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 8px rgba(63, 81, 181, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 87, 34, 0.2);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  box-shadow: 0 6px 8px rgba(255, 87, 34, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

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

button, 
input[type='submit'] {
  cursor: pointer;
  font-family: var(--font-body);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

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

.logo a {
  color: var(--neutral-100);
  text-decoration: none;
}

.logo h1 {
  margin: 0;
  font-size: 1.75rem;
}

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

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

.desktop-nav a {
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-100);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  padding: var(--space-md) 0;
}

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

.mobile-nav li {
  margin-bottom: var(--space-md);
}

.mobile-nav a {
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  color: var(--neutral-100);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--neutral-100);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--neutral-100);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--neutral-100);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Aplicaciones Section */
.app-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

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

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.card-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

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

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

/* Insights Section */
.insights-slider {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.slider-container {
  overflow: hidden;
  padding: var(--space-md) 0;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.insight-card {
  padding: var(--space-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.insight-icon {
  width: 120px;
  height: 120px;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.insight-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 var(--space-sm);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h4 {
  margin: 0 0 var(--space-xs);
  color: white;
  font-size: 1.2rem;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
}

/* Recursos Externos Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
}

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

.resource-card ul {
  padding-left: var(--space-lg);
}

.resource-card li {
  margin-bottom: var(--space-sm);
}

.resource-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Webinars Section */
.webinars-carousel {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.carousel-container {
  overflow: hidden;
  padding: var(--space-md) 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.webinar-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.webinar-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webinar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.webinar-date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.webinar-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

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

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: var(--space-xl);
}

.portfolio-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

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

/* Awards Section */
.awards-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.award-item {
  display: flex;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  transition: transform 0.3s ease;
}

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

.award-badge {
  flex: 0 0 150px;
  margin-right: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-badge img {
  max-width: 100%;
  max-height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.award-content {
  flex: 1;
}

.award-content h3 {
  margin-top: 0;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.award-recipient {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* Success Stories Section */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.story-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.story-image {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

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

.story-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.story-content h3 {
  margin-top: 0;
  margin-bottom: var(--space-xs);
}

.story-author {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* Events Calendar Section */
.events-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.timeline-item {
  display: flex;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.timeline-date {
  flex: 0 0 80px;
  margin-right: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
}

.timeline-date span:first-child {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: var(--space-xs);
}

.event-location {
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
}

/* Resources Section */
.resources-tabs {
  margin-top: var(--space-xl);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--neutral-300);
}

.tab-btn {
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.resource-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

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

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

.resource-item h3 {
  margin-bottom: var(--space-md);
}

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

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-form {
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-400);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.info-item {
  margin-bottom: var(--space-md);
}

.info-label {
  font-weight: 500;
  color: var(--neutral-800);
  margin-right: var(--space-sm);
}

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

.accordion-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 500;
  background-color: var(--neutral-200);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--neutral-300);
}

.accordion-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: var(--space-md);
  max-height: 200px;
}

/* Footer */
.footer {
  padding: var(--space-xxl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
}

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

.footer-logo {
  flex: 0 0 100%;
  margin-bottom: var(--space-xl);
}

.footer-logo h2 {
  color: var(--neutral-800);
  margin: 0 0 var(--space-xs);
  font-size: 2rem;
}

.footer-logo p {
  color: var(--neutral-700);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  width: 100%;
}

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

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

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

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

.footer-column a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.social-links a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-300);
  color: var(--neutral-700);
}

.footer-bottom p {
  margin: 0.5rem 0;
}

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

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

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

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .slider-item,
  .carousel-item {
    flex: 0 0 calc(50% - 20px);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
  
  .award-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .award-badge {
    margin-right: 0;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .slider-item,
  .carousel-item {
    flex: 0 0 calc(100% - 20px);
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-date {
    margin-right: 0;
    margin-bottom: var(--space-md);
    flex-direction: row;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid,
  .resources-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
  }
}