:root {
  /* Триадная цветовая схема */
  --primary-color: #FF3B5C; /* Основной красно-розовый */
  --secondary-color: #00CCAA; /* Дополнительный бирюзовый */
  --tertiary-color: #4A6FFF; /* Третичный синий */
  
  /* Темные и светлые варианты основных цветов */
  --primary-dark: #CC2E49;
  --secondary-dark: #009980;
  --tertiary-dark: #3A59CC;
  
  /* Оттенки для фонов и элементов */
  --light-bg: #F8F9FA;
  --dark-bg: #222222;
  --medium-bg: #333333;
  
  /* Оттенки для текста */
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #FFFFFF;
  
  /* Оттенки для акцентов */
  --accent-color: #FFD500;
  --success-color: #28A745;
  --error-color: #DC3545;
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --gap-small: 10px;
  --gap-medium: 20px;
  --gap-large: 40px;
  --gap-xl: 60px;
  
  /* Тени */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Радиусы углов */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--text-dark);
  margin-bottom: var(--gap-medium);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--gap-medium);
}

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

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

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

section {
  padding: var(--gap-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--gap-xl);
  position: relative;
  font-size: 3rem;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-small);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--dark-bg);
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  transition: background-color var(--transition-medium);
}

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

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-light);
}

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

.desktop-nav li {
  margin-left: var(--gap-medium);
}

.desktop-nav a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

.desktop-nav a:hover::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: 3px;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.mobile-nav {
  display: none;
  background-color: var(--dark-bg);
  padding: 20px;
}

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

.mobile-nav li {
  margin-bottom: var(--gap-small);
}

.mobile-nav a {
  color: var(--text-light);
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--gap-large);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: var(--gap-small);
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: var(--gap-medium);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--secondary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--gap-xl);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: var(--gap-medium);
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--box-shadow);
}

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

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

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

.timeline-content .image-container {
  margin-top: var(--gap-medium);
  text-align: center;
}

.timeline-content .image-container img {
  margin: 0 auto;
  border-radius: var(--radius-small);
  object-fit: cover;
  max-height: 250px;
}

/* Innovación Section */
.innovacion {
  background-color: var(--medium-bg);
  color: var(--text-light);
}

.innovacion .section-title {
  color: var(--text-light);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap-large);
}

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

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  overflow: hidden;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: 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(--gap-medium);
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--text-medium);
}

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

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin-top: var(--gap-medium);
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--tertiary-color);
  border-radius: 5px;
  font-size: 0.8rem;
  line-height: 10px;
  color: var(--text-light);
  text-align: center;
  padding: 0 5px;
  transition: width 1s ease-in-out;
}

/* Toggle Switch */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--gap-medium);
}

.toggle-container span {
  margin: 0 10px;
  font-size: 0.9rem;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-medium);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-medium);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Investigación Section */
.investigacion {
  background-color: var(--light-bg);
}

.research-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}

.research-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-large);
  align-items: center;
  background-color: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.research-image {
  height: 400px;
  overflow: hidden;
}

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

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

.research-content {
  padding: var(--gap-large);
}

.research-content h3 {
  color: var(--tertiary-color);
  margin-bottom: var(--gap-medium);
}

/* Enlaces Externos */
.enlaces-externos {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.enlaces-externos .section-title {
  color: var(--text-light);
}

.external-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap-large);
}

.external-link {
  text-decoration: none;
  color: inherit;
}

.external-link-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  padding: var(--gap-medium);
  text-align: center;
  transition: transform var(--transition-medium), background-color var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.external-link-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--gap-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.external-link-card h3 {
  color: var(--text-light);
  margin-bottom: var(--gap-small);
}

.external-link-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Eventos Calendar */
.eventos {
  background-color: var(--light-bg);
}

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

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

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

.event-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--gap-medium);
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.event-date .month,
.event-date .year {
  font-size: 1rem;
  display: block;
}

.event-content {
  padding: var(--gap-medium);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-content h3 {
  color: var(--tertiary-color);
  margin-bottom: var(--gap-small);
}

.event-location {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: var(--gap-small);
}

.event-description {
  margin-bottom: var(--gap-medium);
  flex: 1;
}

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

/* Blog Section */
.blog {
  background-color: var(--medium-bg);
  color: var(--text-light);
}

.blog .section-title {
  color: var(--text-light);
}

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

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

.blog-card:hover {
  transform: translateY(-10px);
}

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

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

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

.blog-content {
  padding: var(--gap-medium);
  flex: 1;
  color: var(--text-dark);
  width: 100%;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--gap-small);
  font-size: 0.9rem;
  color: var(--text-medium);
}

.blog-content h3 {
  color: var(--tertiary-color);
  margin-bottom: var(--gap-small);
}

.read-more {
  display: inline-block;
  margin-top: var(--gap-small);
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  padding-right: 25px;
  transition: color var(--transition-fast);
}

.read-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

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

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Instructores Section */
.instructores {
  background-color: var(--light-bg);
}

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

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

.instructor-card:hover {
  transform: translateY(-10px);
}

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

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

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

.instructor-content {
  padding: var(--gap-medium);
  text-align: center;
}

.instructor-content h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.instructor-title {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: var(--gap-medium);
}

/* Clientela Section */
.clientela {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.clientela .section-title {
  color: var(--text-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gap-large);
  justify-items: center;
  align-items: center;
}

.client {
  text-align: center;
  transition: transform var(--transition-medium);
}

.client:hover {
  transform: scale(1.1);
}

.client img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto var(--gap-small);
  filter: grayscale(100%) brightness(1.5);
  transition: filter var(--transition-medium);
}

.client:hover img {
  filter: grayscale(0%) brightness(1);
}

.client p {
  color: var(--text-light);
  font-weight: 500;
}

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

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

.contact-info {
  background-color: var(--tertiary-color);
  color: var(--text-light);
  padding: var(--gap-large);
  border-radius: var(--radius-medium);
}

.contact-info h3 {
  color: var(--text-light);
  margin-bottom: var(--gap-medium);
}

.contact-info ul {
  list-style: none;
  margin-bottom: var(--gap-large);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--gap-medium);
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: var(--gap-small);
}

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

.social-links a {
  color: var(--text-light);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-form {
  background-color: white;
  padding: var(--gap-large);
  border-radius: var(--radius-medium);
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  margin-bottom: var(--gap-large);
}

.form-group {
  margin-bottom: var(--gap-medium);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-small);
  transition: border-color var(--transition-fast);
}

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

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: var(--gap-xl) 0 var(--gap-medium);
}

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

.footer h3 {
  color: var(--text-light);
  margin-bottom: var(--gap-medium);
  font-size: 1.4rem;
}

.footer-about p {
  margin-bottom: 0;
}

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

.footer-links li,
.footer-legal li {
  margin-bottom: var(--gap-small);
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text-light);
  text-decoration: none;
}

.footer-social .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-medium);
}

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

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

.success-page .icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: var(--gap-medium);
}

.success-page h1 {
  margin-bottom: var(--gap-medium);
}

.success-page p {
  max-width: 600px;
  margin: 0 auto var(--gap-large);
}

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

.privacy-page .container,
.terms-page .container {
  max-width: 800px;
}

.privacy-page h1,
.terms-page h1 {
  margin-bottom: var(--gap-large);
}

.privacy-page h2,
.terms-page h2 {
  margin-top: var(--gap-large);
  margin-bottom: var(--gap-medium);
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(34, 34, 34, 0.9);
  color: var(--text-light);
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#cookie-consent p {
  margin: 0 20px 0 0;
}

#accept-cookies {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--radius-small);
  transition: background-color var(--transition-fast);
}

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

/* Media Queries */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-nav.active {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .research-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--gap-small);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-links,
  .footer-legal,
  .footer-social {
    text-align: center;
  }

  .footer-social .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info,
  .contact-form {
    padding: var(--gap-medium);
  }
}

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.morph-animation {
  animation: morphing 10s ease-in-out infinite;
}

.instructor-image img,
.blog-image img,
.external-link-icon img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 10s ease-in-out infinite;
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

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

.mb-0 {
  margin-bottom: 0;
}
.mobile-menu-toggle{
  display: none;
}