:root {
  /* Color Palette */
  --primary-color: #3a63e8;
  --primary-dark: #2a4eb5;
  --primary-light: #607eef;
  --primary-bg: #f3f6ff;
  --secondary-color: #2c3e50;
  --secondary-dark: #1a2530;
  --secondary-light: #415b76;
  --accent-color: #38c1f7;
  --accent-dark: #1c9fd6;
  --accent-light: #6ad2fa;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --mid-gray: #ced4da;
  --dark-gray: #6c757d;
  --black: #212529;
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
  --box-shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--secondary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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;
}

/* Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

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

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--dark-gray);
}

/* Buttons */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--box-shadow-light);
}

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

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

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow-light);
  z-index: 1000;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

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

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

.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::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;
  width: 100%;
  background-color: var(--secondary-color);
  transition: all var(--transition-fast);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--white);
  overflow: hidden;
  transition: height var(--transition-medium);
  z-index: 999;
  box-shadow: var(--box-shadow-medium);
}

.mobile-menu.active {
  height: calc(100vh - 80px);
}

.mobile-menu ul {
  list-style: none;
  padding: var(--space-md) 0;
}

.mobile-menu ul li {
  padding: var(--space-sm) var(--space-md);
}

.mobile-menu ul li a {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-color);
  display: block;
  padding: var(--space-sm) 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px; /* Header height */
}

.hero-content {
  max-width: 750px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin: 0 auto;
}

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

.about-text h3 {
  margin-top: var(--space-md);
}

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

.timeline h3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.timeline-container {
  position: relative;
  padding: var(--space-md) 0;
}

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

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: calc(var(--space-lg) + 30px);
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: calc(var(--space-lg) + 30px);
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 5px solid var(--white);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -15px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -15px;
}

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

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

/* Services Section */
.services {
  background-color: var(--primary-bg);
}

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

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

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

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

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

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

.card-content {
  padding: var(--space-md);
  flex-grow: 1;
  text-align: center;
}

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

/* Why Us Section */
.why-us {
  background-color: var(--white);
}

.why-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

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

.why-us-image {
  flex: 1;
  min-width: 300px;
}

.why-us-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin: 0 auto;
}

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

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: var(--space-md);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-sm);
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-medium);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* Instructors Section */
.instructors {
  background-color: var(--primary-bg);
}

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

.instructors .card-image {
  height: 350px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

/* Statistics Section */
.statistics {
  padding: var(--space-xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

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

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat-card {
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-medium);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.stat-card p {
  font-size: 1.125rem;
  color: var(--white);
  margin: 0;
}

/* Success Stories Section */
.success-stories {
  background-color: var(--white);
}

.testimonials-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial {
  padding: var(--space-md);
  margin: 0 var(--space-sm);
}

.testimonial-content {
  background-color: var(--primary-bg);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-light);
  position: relative;
  text-align: center;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(58, 99, 232, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
}

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

.author-info h4 {
  margin-bottom: 0;
  color: var(--secondary-dark);
}

.author-info p {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.875rem;
}

/* Research Section */
.research {
  background-color: var(--primary-bg);
}

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

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

.research-image {
  flex: 1;
  min-width: 300px;
}

.research-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin: 0 auto;
}

.research-highlights {
  margin-top: var(--space-md);
}

.research-item {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  margin-bottom: var(--space-md);
}

.research-item h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.research-item p {
  margin-bottom: 0;
}

/* Process Section */
.process {
  background-color: var(--white);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: var(--space-lg);
  position: relative;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 50%;
  margin-right: var(--space-md);
}

.step-content {
  flex-grow: 1;
  padding-top: var(--space-xs);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 30px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--primary-light);
}

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

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

.portfolio-item {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.portfolio-content {
  padding: var(--space-md);
  text-align: center;
}

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

/* Resources Section */
.resources {
  background-color: var(--white);
}

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

.resource-card {
  padding: var(--space-md);
  background-color: var(--primary-bg);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.resource-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

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

.resource-card p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

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

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

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

.accolades-image {
  flex: 1;
  min-width: 300px;
}

.accolades-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin: 0 auto;
}

.accolades-list {
  list-style: none;
  margin-top: var(--space-md);
}

.accolades-list li {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  margin-bottom: var(--space-md);
}

.accolades-list li h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.accolades-list li p {
  margin-bottom: 0;
}

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

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

/* News Section */
.news {
  background-color: var(--primary-bg);
}

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

.news-item {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.news-content {
  padding: var(--space-md);
  text-align: center;
}

.news-date {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

.info-item h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-container input {
  width: auto;
  margin-top: 4px;
}

.checkbox-container label {
  margin: 0;
}

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

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

.footer-logo {
  flex: 1 1 300px;
}

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

.footer-logo p {
  color: var(--mid-gray);
}

.footer-links,
.footer-legal,
.footer-social {
  flex: 1 1 200px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

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

.footer ul {
  list-style: none;
}

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

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

.footer ul li a:hover {
  color: var(--white);
}

.footer-social ul li a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

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

.footer-bottom p {
  color: var(--mid-gray);
  margin: 0;
}

/* Success Page */
.success-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-bg);
}

.success-container {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

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

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

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px; /* Header height + spacing */
}

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

.content-page h1 {
  margin-bottom: var(--space-lg);
}

.content-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-page p,
.content-page ul,
.content-page ol {
  margin-bottom: var(--space-md);
}

.content-page ul,
.content-page ol {
  padding-left: var(--space-lg);
}

/* Utilities */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  gap: 5px;
  transition: all var(--transition-fast);
}

.read-more:after {
  content: '→';
  transition: transform var(--transition-fast);
}

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

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

/* Icons */
.book-icon:before {
  content: '📚';
  font-size: 24px;
}

.heart-icon:before {
  content: '❤️';
  font-size: 24px;
}

.brain-icon:before {
  content: '🧠';
  font-size: 24px;
}

.video-icon:before {
  content: '🎬';
  font-size: 24px;
}

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

.fade-in {
  animation: fadeIn var(--transition-medium) ease-out;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 0 0 0 60px !important;
  }
  
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 15px !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-content,
  .why-us-content,
  .research-content,
  .accolades-content,
  .contact-content {
    flex-direction: column;
  }
  
  .about-image,
  .why-us-image,
  .research-image,
  .accolades-image {
    order: -1;
    margin-bottom: var(--space-md);
  }
  
  .card-image,
  .portfolio-image,
  .news-image {
    height: 200px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: var(--space-sm);
    margin-right: 0;
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --space-xl: 3rem;
    --space-lg: 2rem;
    --space-md: 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 var(--space-sm);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none;
  }
}