/* ===== VARIABLES ===== */
:root {
  /* Main color scheme (Triadic) */
  --primary-color: #3f51b5; /* Main blue */
  --primary-dark: #303f9f;
  --primary-light: #7986cb;
  
  --secondary-color: #b53f8a; /* Complementary pink */
  --secondary-dark: #9f3073;
  --secondary-light: #cb78a9;
  
  --tertiary-color: #51b53f; /* Complementary green */
  --tertiary-dark: #3f9f30;
  --tertiary-light: #78cb78;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #121212;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
  --gradient-dark: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(51, 51, 51, 0.9));
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Borders */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  --border-radius-circle: 50%;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

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

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

.text-center {
  text-align: center;
}

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

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-full {
  width: 100%;
}

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

/* ===== HEADER & NAVIGATION ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

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

.logo a {
  display: block;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin: 0 var(--space-sm);
}

.nav-links a {
  position: relative;
  color: var(--dark-gray);
  font-weight: 500;
  padding: 8px 0;
}

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

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

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

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dark-gray);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.animated-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-text {
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* ===== VISION SECTION ===== */
.vision {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

.vision-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.vision-image:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-top: 5px solid var(--primary-color);
  border-left: 5px solid var(--primary-color);
  z-index: 1;
}

.vision-image:after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-bottom: 5px solid var(--secondary-color);
  border-right: 5px solid var(--secondary-color);
  z-index: 1;
}

.vision-image img {
  display: block;
  width: 100%;
  transform: scale(1);
  transition: transform var(--transition-slow);
  object-fit: cover;
}

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

.vision-text {
  flex: 1;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

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

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

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

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

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

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

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-gray);
}

.price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: var(--space-sm) 0;
}

/* ===== EXAMPLES SECTION ===== */
.examples {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

.benefit-item {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.animated-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  position: relative;
}

.animated-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-gray);
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
  text-align: center;
}

.partners-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.partners-links a {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--white);
  color: var(--dark-gray);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partners-links a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--primary-color);
}

.partners-note {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

.about-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.about-text {
  flex: 1;
}

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

.mission, .values {
  padding: var(--space-md);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
}

.values ul {
  list-style: none;
}

.values li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: 25px;
}

.values li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== RESEARCH SECTION ===== */
.research {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

.research-text {
  margin-bottom: var(--space-lg);
}

.research-pillars {
  list-style: none;
  margin-bottom: var(--space-md);
}

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

.research-timeline h3 {
  margin-bottom: var(--space-md);
}

.timeline {
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: var(--space-md);
}

.timeline-date {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: var(--border-radius-circle);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  z-index: 1;
}

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

.timeline-content h4 {
  margin-bottom: 5px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 1;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  text-align: center;
}

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

/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

.feature-item {
  text-align: center;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: var(--border-radius-circle);
  overflow: hidden;
  padding: 15px;
  background-color: var(--light-gray);
}

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

/* ===== INSTRUCTORS SECTION ===== */
.instructors {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

.instructor-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

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

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: var(--space-md);
  transform: translateY(70%);
  transition: transform var(--transition-normal);
}

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

.portfolio-overlay h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.portfolio-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark-gray);
}

.contact-item p {
  margin-bottom: var(--space-xs);
}

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

.social-links a {
  display: inline-block;
  padding: 8px 12px;
  background-color: var(--light-gray);
  color: var(--dark-gray);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--dark-gray);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  font-family: var(--font-body);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
  outline: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

/* ===== FOOTER ===== */
.main-footer {
  padding: var(--space-xl) 0 var(--space-md);
  background-color: var(--dark-gray);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

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

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

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-normal);
}

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

.newsletter-form {
  display: flex;
  margin-top: var(--space-sm);
}

.newsletter-form input {
  flex-grow: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

.footer-column .social-links a {
  color: var(--light-gray);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-column .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--light-gray);
}

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

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

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

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

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

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

.privacy-content h2, .terms-content h2 {
  color: var(--dark-gray);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animated-icon {
  animation: pulse 3s infinite ease-in-out;
}

.animated-stats {
  position: relative;
}

.stat-item {
  animation: float 4s infinite ease-in-out;
}

.stat-item:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .vision-content, .about-content {
    flex-direction: column;
  }
  
  .vision-image, .vision-text, .about-image, .about-text {
    flex: none;
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: var(--space-xs) 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .animated-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card {
    min-width: 100%;
  }
  
  .gallery-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .newsletter-form input, .newsletter-form button {
    border-radius: var(--border-radius-md);
  }
  
  .partners-links {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    padding: var(--space-md);
  }
}