:root {
  /* Основная цветовая палитра */
  --primary: #ff5e84;
  --primary-dark: #d93c62;
  --secondary: #36d1dc;
  --secondary-dark: #1ca7b2;
  --accent: #ffb344;
  --accent-dark: #e69220;
  
  /* Нейтральные цвета */
  --light: #ffffff;
  --dark: #222222;
  --dark-light: #333333;
  --gray: #f0f0f0;
  --gray-dark: #e0e0e0;
  --gray-darker: #c0c0c0;
  
  /* Тени для нейроморфизма */
  --shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.4);
  --shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-inset-light: inset 8px 8px 16px rgba(174, 174, 192, 0.2);
  --shadow-inset-dark: inset -8px -8px 16px rgba(255, 255, 255, 0.4);
  
  /* Радиусы скругления */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Размеры отступов */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Параметры контейнера */
  --container-width: 1200px;
  --container-padding: 2rem;
  
  /* Параметры секций */
  --section-spacing: 5rem;
  
  /* Параметры переходов */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Базовые стили */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--dark);
  background-color: var(--gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

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

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

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

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

ul {
  list-style: none;
}

/* Утилиты */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.mb-sm {
  margin-bottom: var(--space-sm);
}

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

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

/* Кнопки */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #fff !important;
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
}

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

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-medium);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

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

.logo a {
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.main-nav {
  display: flex;
}

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

.nav-list li {
  margin-left: var(--space-md);
}

.nav-list a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* Hero секция */
.hero {
  position: relative;
  padding: 12rem 0 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  color: var(--light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

/* О нас секция */
.about-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--dark-light);
}

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

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

.image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

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

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

/* Миссия секция */
.mission-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray);
}

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

.card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

/* Курсы секция */
.courses-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

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

.courses-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.courses-grid .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.courses-grid .card-content ul {
  margin: var(--space-sm) 0;
  text-align: left;
}

.courses-grid .card-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.courses-grid .card-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Ресурсы секция */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray);
}

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

.resource-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-light);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: transform var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
  text-align: center;
}

.resource-card ul {
  margin-top: var(--space-sm);
}

.resource-card ul li {
  margin-bottom: 0.5rem;
}

.resource-card ul li a {
  color: var(--secondary);
  transition: color var(--transition-fast);
}

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

/* Команда секция */
.staff-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.staff-search {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.search-bar {
  display: flex;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.search-bar input {
  flex-grow: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 1rem;
}

.search-bar input:focus {
  outline: none;
  box-shadow: var(--shadow-inset-light);
}

.search-bar button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}

.staff-card .card-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.staff-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card .card-content {
  text-align: center;
}

.staff-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.staff-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-sm);
}

.staff-specialties span {
  background-color: var(--gray);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-light);
}

/* Отзывы секция */
.testimonials-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray);
}

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

.testimonial-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-light);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
  overflow: hidden;
  border: 5px solid var(--light);
  box-shadow: var(--shadow-light);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--dark-light);
  margin-bottom: 0;
}

/* Цены секция */
.pricing-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

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

.pricing-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: transform var(--transition-medium);
  border: 1px solid var(--gray-dark);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: var(--space-md);
  text-align: center;
  background-color: var(--gray);
  position: relative;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--light);
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 0 0 var(--radius-sm);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.pricing-features {
  padding: var(--space-md);
}

.pricing-features ul {
  margin-bottom: var(--space-md);
}

.pricing-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-footer {
  padding: 0 var(--space-md) var(--space-md);
  text-align: center;
}

/* FAQ секция */
.faq-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray);
}

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

.accordion-item {
  background-color: var(--light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

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

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

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

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

.accordion-content p {
  padding: 0 var(--space-md) var(--space-md);
}

/* Контакты секция */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

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

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

.contact-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary);
  text-align: center;
}

.contact-details {
  margin-top: var(--space-sm);
}

.contact-item {
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-value {
  color: var(--dark-light);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 94, 132, 0.2);
}

/* Футер */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--space-lg) 0 var(--space-sm);
}

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

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

.footer-logo h2 {
  color: var(--light);
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

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

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.footer-column h3 {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

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

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

.footer-column ul li {
  margin-bottom: 8px;
}

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

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: var(--gray-darker);
  transition: color var(--transition-fast);
}

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

.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(--gray-darker);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--light);
  padding: var(--space-md);
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

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

#cookie-consent a {
  color: var(--accent);
}

#cookie-consent button {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#cookie-consent button:hover {
  background-color: var(--accent-dark);
}

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

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.success-message {
  max-width: 600px;
  margin-bottom: var(--space-md);
}

/* Privacy and Terms pages */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--space-xl);
}

.page-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.page-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

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

.content-section h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.content-section p {
  margin-bottom: var(--space-sm);
}

.content-section ul {
  margin-bottom: var(--space-md);
  list-style-type: disc;
  padding-left: var(--space-md);
}

.content-section ul li {
  margin-bottom: 8px;
}

/* Медиа-запросы */
@media (max-width: 992px) {
  :root {
    --container-padding: 1.5rem;
    --section-spacing: 4rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --section-spacing: 3rem;
  }
  
  .hero {
    padding: 10rem 0 6rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    z-index: 1000;
  }
  
  .main-nav.active {
    max-height: 500px;
    padding: 1rem;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .nav-list li {
    margin: 0.5rem 0;
  }
  
  .mobile-menu-button.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column {
    text-align: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-xs);
  }
}

@media (max-width: 576px) {
  :root {
    --container-padding: 1rem;
    --section-spacing: 2.5rem;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
  }
  
  .testimonial-card {
    width: 100%;
  }
}

.image-container img {
  width: 100%;
}

textarea {
  resize: none;
}

#scroll-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--primary, #ff5e84);
    color: rgb(255, 255, 255);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0.8;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(var(--motion-scale));
    --motion-scale: 1;
}

.btn-home:hover {
  color: #fff !important;
}

 .careers-section {
            padding: 80px 0;
           
            position: relative;
            overflow: hidden;
        }

        .careers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .section-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .job-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b9d, #4ecdc4);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .job-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .job-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: white;
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .job-department {
            color: #7f8c8d;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .job-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .job-requirements {
            margin-bottom: 30px;
        }

        .job-requirements h4 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
        }

        .requirements-list li {
            color: #666;
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
            font-size: 0.9rem;
        }

        .requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ecdc4;
            font-weight: bold;
        }

        .job-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px 0;
            border-top: 1px solid #ecf0f1;
        }

        .job-salary {
            font-size: 1.2rem;
            font-weight: 700;
            color: #27ae60;
        }

        .job-type {
            background: #e8f5e8;
            color: #27ae60;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .apply-btn {
            width: 100%;
            background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
        }

        .contact-info {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-top: 60px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .contact-info h3 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .contact-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .jobs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .job-card {
                padding: 30px 20px;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }