:root {
  /* Main colors */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --secondary-color: #10b981;
  --secondary-dark: #059669;
  --secondary-light: #34d399;
  --accent-color: #8b5cf6;
  --accent-dark: #7c3aed;
  --accent-light: #a78bfa;

  /* Monochromatic palette */
  --mono-100: #f8fafc;
  --mono-200: #e2e8f0;
  --mono-300: #cbd5e1;
  --mono-400: #94a3b8;
  --mono-500: #64748b;
  --mono-600: #475569;
  --mono-700: #334155;
  --mono-800: #1e293b;
  --mono-900: #0f172a;

  /* Text colors */
  --text-light: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;

  /* Background colors */
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --bg-muted: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Transitions */
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--mono-800);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
}

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

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.small-btn {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8rem;
}

.resource-btn {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.resource-btn:hover {
  background-color: var(--accent-dark);
  color: var(--text-light);
}

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

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

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--mono-600);
  margin-top: -var(--space-8);
  margin-bottom: var(--space-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) 0;
  transition: var(--transition-normal);
}

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

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

.logo img {
  height: auto;
  max-height: 50px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: var(--space-6);
}

.main-nav ul li a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
}

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

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

.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(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding-top: 80px;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(37, 99, 235, 0.6));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-3);
  color: var(--text-light);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-6);
  color: var(--text-light);
  font-weight: 400;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-8);
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* Particle Animation */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

@keyframes particle-animation {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0);
  }
}

/* Vision Section */
.vision-section {
  background-color: var(--bg-light);
}

.vision-content {
  display: flex;
  gap: var(--space-12);
  align-items: center;
}

.vision-image,
.vision-text {
  flex: 1;
}

.vision-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
}

.vision-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

/* Statistics Section */
.statistics-section {
  background: linear-gradient(135deg, var(--mono-900), var(--primary-dark));
  color: var(--text-light);
  padding: var(--space-20) 0;
}

.statistics-section .section-title,
.statistics-section .section-subtitle {
  color: var(--text-light);
}

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

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

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

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

.stat-icon img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--primary-light);
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-light);
}

.stat-description {
  font-size: 0.9rem;
  color: var(--mono-300);
}

/* History Section */
.history-section {
  background-color: var(--bg-light);
}

.history-content {
  display: flex;
  gap: var(--space-12);
}

.history-text {
  flex: 1;
}

.history-timeline {
  flex: 1;
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-8);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
  width: 2px;
  background-color: var(--primary-color);
  z-index: 1;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-3);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  padding: var(--space-4);
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-left: var(--space-6);
  flex: 1;
}

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

/* Portfolio Section */
.portfolio-section {
  background-color: var(--bg-muted);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  gap: var(--space-2);
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover, 
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.portfolio-item {
  overflow: hidden;
}

.portfolio-item .card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-content {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-content p {
  color: var(--mono-700);
  margin-bottom: var(--space-3);
}

.card-content .btn {
  margin-top: auto;
}

/* Resources Section */
.resources-section {
  background: linear-gradient(to right, var(--mono-900), var(--primary-dark));
  color: var(--text-light);
}

.resources-section .section-title,
.resources-section .section-subtitle {
  color: var(--text-light);
}

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

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

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

.resource-icon {
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: center;
}

.resource-title {
  color: var(--text-light);
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
}

.resource-description {
  color: var(--mono-300);
  margin-bottom: var(--space-6);
  flex: 1;
}

.resource-btn {
  margin-top: auto;
}

/* Projects Section */
.projects-section {
  background-color: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

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

.project-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.project-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-status {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

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

.project-details {
  list-style: none;
  margin: var(--space-4) 0;
}

.project-details li {
  margin-bottom: var(--space-2);
}

.project-content .btn {
  margin-top: var(--space-4);
  align-self: flex-start;
}

/* Accolades Section */
.accolades-section {
  background-color: var(--bg-muted);
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-6);
}

.accolade-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.accolade-image {
  margin-bottom: var(--space-4);
  width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolade-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.accolade-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
}

.accolade-card p {
  color: var(--mono-600);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-card);
}

.faq-question {
  padding: var(--space-4) var(--space-6);
  background-color: var(--mono-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background-color: var(--mono-200);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--mono-800);
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--space-4) var(--space-6);
  max-height: 500px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* Events Section */
.events-section {
  background-color: var(--bg-muted);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.event-card {
  display: flex;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.event-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  text-align: center;
}

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

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.event-content {
  padding: var(--space-4) var(--space-6);
  flex: 1;
}

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

.event-details {
  color: var(--mono-600);
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
}

.event-description {
  margin-bottom: var(--space-4);
}

.icon-time, .icon-location {
  margin-right: var(--space-1);
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
}

.contact-container {
  display: flex;
  gap: var(--space-12);
}

.contact-info, .contact-form {
  flex: 1;
}

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

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

.info-icon {
  margin-right: var(--space-4);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.info-icon img {
  width: 30px;
  height: 30px;
}

.info-text h4 {
  margin-bottom: var(--space-1);
  color: var(--mono-800);
}

.info-text p {
  color: var(--mono-600);
}

.contact-form {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

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

label {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--mono-700);
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--mono-300);
  border-radius: var(--radius-md);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
}

.checkbox-container input {
  width: auto;
  margin-right: var(--space-2);
}

.checkbox-container label {
  margin-bottom: 0;
}

.contact-form .btn {
  margin-top: var(--space-4);
  width: 100%;
}

/* Map Section */
.map-section {
  height: 450px;
}

.map-container {
  height: 100%;
}

.map-container iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

/* Footer */
.main-footer {
  background-color: var(--mono-900);
  color: var(--text-light);
  padding: var(--space-16) 0 var(--space-4);
}

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

.footer-logo {
  flex-basis: 100%;
  max-width: 300px;
}

.footer-logo img {
  margin-bottom: var(--space-4);
  max-height: 50px;
}

.footer-logo p {
  color: var(--mono-400);
}

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

.footer-links h3, .footer-contact h3 {
  color: var(--text-light);
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--mono-400);
  transition: var(--transition-normal);
}

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

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

.footer-contact p {
  color: var(--mono-400);
  margin-bottom: var(--space-2);
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-links a {
  color: var(--mono-400);
  transition: var(--transition-normal);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--mono-700);
  padding-top: var(--space-4);
  text-align: center;
}

.footer-bottom p {
  color: var(--mono-500);
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.success-content {
  max-width: 600px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
}

.success-content img {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.success-content p {
  margin-bottom: var(--space-6);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-16);
}

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

.page-content h1 {
  margin-bottom: var(--space-8);
  color: var(--primary-color);
}

.page-content h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--mono-800);
}

.page-content p {
  margin-bottom: var(--space-4);
}

.page-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.page-content li {
  margin-bottom: var(--space-2);
}

/* Cookie Consent */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: var(--space-4);
  z-index: 9999;
  text-align: center;
}

#cookie-consent p {
  margin-bottom: var(--space-4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#accept-cookies {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
}

#accept-cookies:hover {
  background: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .vision-content,
  .history-content,
  .contact-container {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .project-card {
    flex-direction: column;
  }
  
  .project-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav ul li {
    margin: var(--space-2) 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .statistics-grid,
  .portfolio-grid,
  .resources-grid,
  .accolades-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: var(--space-2);
    flex-direction: row;
    justify-content: center;
    gap: var(--space-2);
  }
  
  .event-date .day,
  .event-date .month {
    font-size: 1.2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-year {
    margin-bottom: var(--space-4);
  }
  
  .timeline-content {
    margin-left: 0;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .info-icon {
    margin-bottom: var(--space-2);
    margin-right: 0;
  }
}