:root {
  /* Основная палитра цветов */
  --primary-color: #6a11cb;
  --primary-color-dark: #4a0d91;
  --primary-color-light: #8a2be2;
  --secondary-color: #2575fc;
  --secondary-color-dark: #1a57c6;
  --secondary-color-light: #5d9cff;
  --accent-color: #ff4d6d;
  --accent-color-dark: #e63c5d;
  --accent-color-light: #ff7a93;
  
  /* Нейтральные цвета */
  --dark-color: #222222;
  --dark-color-light: #333333;
  --gray-color: #666666;
  --light-gray: #f0f0f0;
  --white-color: #ffffff;
  
  /* Градиенты */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --dark-gradient: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  
  /* Тени */
  --neuro-shadow-flat: 3px 3px 6px rgba(0, 0, 0, 0.15), -3px -3px 6px rgba(255, 255, 255, 0.8);
  --neuro-shadow-pressed: inset 3px 3px 6px rgba(0, 0, 0, 0.15), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
  --neuro-shadow-float: 6px 6px 12px rgba(0, 0, 0, 0.15), -6px -6px 12px rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  
  /* Анимации */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Размеры */
  --header-height: 80px;
  --container-width: 1200px;
  --container-padding: 20px;
  --border-radius-small: 8px;
  --border-radius-medium: 15px;
  --border-radius-large: 25px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

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

ul, ol {
  list-style: none;
  padding-left: 0;
}

/* Контейнер */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Секции */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

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

/* Кнопки */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-medium);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  box-shadow: var(--neuro-shadow-flat);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before,
button:before,
input[type="submit"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.btn:hover:before,
button:hover:before,
input[type="submit"]:hover:before {
  transform: translateY(0);
}

.btn:active,
button:active,
input[type="submit"]:active {
  box-shadow: var(--neuro-shadow-pressed);
  transform: translateY(2px);
}

.btn.primary,
button.primary,
input[type="submit"].primary {
  background: var(--primary-gradient);
  color: var(--white-color);
}

.btn.primary:hover,
button.primary:hover,
input[type="submit"].primary:hover {
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--secondary-color-dark) 100%);
  box-shadow: var(--hover-shadow);
}

.btn.secondary,
button.secondary,
input[type="submit"].secondary {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn.secondary:hover,
button.secondary:hover,
input[type="submit"].secondary:hover {
  background: var(--light-gray);
  color: var(--primary-color-dark);
  box-shadow: var(--hover-shadow);
}

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

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

.logo a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all var(--transition-fast);
}

.logo a:hover {
  transform: scale(1.05);
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

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

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

.desktop-nav ul li a:hover:after {
  width: 100%;
}

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

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

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-medium);
  z-index: -1;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  border-bottom: 1px solid var(--light-gray);
}

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

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

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-gradient);
}

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

.hero-content h1 {
  color: var(--white-color);
  margin-bottom: 30px;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

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

.stat-number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--secondary-color-light) 0%, var(--white-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
}

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

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

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

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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: 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: var(--dark-color);
}

.card-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  transition: var(--transition-fast);
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white-color);
  transition: var(--transition-fast);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

/* Success Stories Section */
.success-stories {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.success-stories:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/pattern-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
}

.stories-slider {
  position: relative;
  overflow: hidden;
}

.story-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.story-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--white-color);
  box-shadow: var(--neuro-shadow-flat);
}

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

.story-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.position {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.quote:before,
.quote:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-light);
  opacity: 0.3;
  position: absolute;
}

.quote:before {
  top: -10px;
  left: -10px;
}

.quote:after {
  bottom: -20px;
  right: -10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.prev-btn,
.next-btn {
  background: var(--white-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--neuro-shadow-flat);
  transition: all var(--transition-fast);
}

.prev-btn:hover,
.next-btn:hover {
  box-shadow: var(--neuro-shadow-float);
}

.prev-btn:active,
.next-btn:active {
  box-shadow: var(--neuro-shadow-pressed);
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--primary-gradient);
  transform: scale(1.2);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--white-color);
}

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

.process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 1;
  box-shadow: var(--neuro-shadow-float);
}

.timeline-content {
  width: 45%;
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.timeline-image {
  width: 45%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
}

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

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

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 1;
}

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

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

.project-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-label {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 5px;
}

.detail-value {
  font-weight: 700;
  color: var(--primary-color);
}

/* Awards Section */
.awards {
  background-color: var(--white-color);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.award-item {
  text-align: center;
  padding: 30px;
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.award-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.award-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.resource-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-medium);
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.resource-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-link {
  margin-top: 20px;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  align-self: center;
}

.resource-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-fast);
}

.resource-link:hover:after {
  width: 100%;
}

/* Insights Section */
.insights {
  background-color: var(--white-color);
}

.insights-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

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

.insight-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.insight-content {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-content h3 {
  margin-bottom: 20px;
}

.insight-content p {
  margin-bottom: 30px;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
}

.info-item h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.info-item ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.icon-location,
.icon-phone,
.icon-email {
  width: 20px;
  margin-right: 10px;
  color: var(--primary-color);
}

.testimonial-widget {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
}

.testimonial {
  font-style: italic;
  margin-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.author-position {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.contact-form-container {
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-small);
  font-family: 'Open Sans', sans-serif;
  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-color);
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color-light) 100%);
  color: var(--white-color);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white-color);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h3 {
  color: var(--white-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
}

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

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

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--light-gray);
}

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

.success-content {
  background: var(--white-color);
  padding: 50px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.success-message {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Terms and Privacy Pages */
.terms-page,
.privacy-page {
  padding-top: 150px;
  padding-bottom: 80px;
}

.terms-content,
.privacy-content {
  background: var(--white-color);
  padding: 50px;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--card-shadow);
}

.terms-content h2,
.privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.terms-content p,
.privacy-content p {
  margin-bottom: 20px;
}

.terms-content ul,
.privacy-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-content ul li,
.privacy-content ul li {
  margin-bottom: 10px;
}

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

#cookie-consent p {
  margin-bottom: 10px;
}

#cookie-consent a {
  color: #4db6ac;
  text-decoration: underline;
}

#accept-cookies {
  background-color: #4db6ac;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #3a9990;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .process-timeline:before {
    left: 20px;
  }
  
  .timeline-number {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-content,
  .timeline-image {
    width: 100%;
    margin-left: 50px;
  }
  
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(even) .timeline-image {
    order: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .success-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  .projects-grid,
  .services-grid,
  .resources-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 20px;
  }
}