:root {
  /* Основная монохромная палитра */
  --primary-color: #0056b3;
  --primary-light: #0069d9;
  --primary-dark: #003d7a;
  --primary-darker: #002c5a;
  --secondary-color: #495057;
  --secondary-light: #6c757d;
  --secondary-dark: #343a40;
  
  /* Оттенки серого */
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #343a40;
  --darker-gray: #212529;
  
  /* Функциональные цвета */
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-color: #ffffff;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  /* Размеры */
  --container-width: 1200px;
  --section-spacing: 80px;
  --card-border-radius: 8px;
  --button-border-radius: 4px;
  
  /* Переходы */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--secondary-dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

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

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--secondary-dark);
}

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

/* Кнопки */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 12px 30px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--button-border-radius);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

button, input[type='submit'] {
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

.header.scrolled {
  padding: 10px 0;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.desktop-nav li {
  margin-left: 30px;
}

.desktop-nav a {
  color: var(--secondary-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

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

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: white;
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right var(--transition-medium);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

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

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

.mobile-nav a {
  color: var(--secondary-dark);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition-fast);
}

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

/* Hero секция */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 0;
  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%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* About секция */
.about-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.about-content.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1 1 500px;
}

.about-image {
  flex: 1 1 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

/* Features секция */
.features-section {
  background-color: white;
}

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

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

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

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

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

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

.card-content {
  padding: 25px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--secondary-dark);
}

/* Портфолио секция */
.portfolio-section {
  background-color: var(--light-gray);
  position: relative;
}

.portfolio-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -15px;
}

.portfolio-item {
  padding: 0 15px;
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.portfolio-content {
  padding: 20px;
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-content h3 {
  margin-bottom: 15px;
}

.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.portfolio-nav button {
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.portfolio-nav button:hover {
  background-color: var(--primary-dark);
}

/* Instructors секция */
.instructors-section {
  background-color: white;
}

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

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

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

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

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

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

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

/* Testimonials секция */
.testimonials-section {
  background-color: var(--light-gray);
  position: relative;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  padding: 30px;
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
  content: '"';
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-content p:before {
  left: 0;
  top: -10px;
}

.testimonial-content p:after {
  right: 0;
  bottom: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-info p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials-nav button {
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.testimonials-nav button:hover {
  background-color: var(--primary-dark);
}

/* Gallery секция */
.gallery-section {
  background-color: white;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 200px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay h3 {
  color: white;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

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

/* Resources секция */
.resources-section {
  background-color: var(--light-gray);
}

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

.resource-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

.resource-card ul {
  list-style: none;
  padding: 0;
}

.resource-card ul li {
  margin-bottom: 10px;
}

.resource-card ul li a {
  display: block;
  padding: 10px;
  background-color: var(--light-gray);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.resource-card ul li a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

/* News секция */
.news-section {
  background-color: white;
}

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

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

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

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

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

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

.news-card .card-content {
  padding: 25px;
  text-align: left;
  width: 100%;
}

.date {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 15px;
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: margin-left var(--transition-fast);
}

.read-more:hover:after {
  margin-left: 10px;
}

/* Pricing секция */
.pricing-section {
  background-color: var(--light-gray);
}

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

.pricing-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  text-align: center;
}

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

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

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

.card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 30px 20px;
}

.pricing-card.featured .card-header {
  background-color: var(--primary-dark);
}

.card-header h3 {
  color: white;
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-card .card-content {
  padding: 30px;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 30px;
}

.pricing-card ul li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 10px;
}

/* Behind the Scenes секция */
.behind-scenes-section {
  background-color: white;
}

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

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

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

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-content {
  width: 45%;
  padding: 30px;
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-image {
  width: 45%;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

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

/* Contact секция */
.contact-section {
  background-color: var(--light-gray);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1 1 400px;
  padding: 30px;
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-info ul {
  list-style: none;
  padding: 0;
}

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

.contact-info ul li i {
  margin-right: 15px;
  color: var(--primary-color);
}

.business-hours {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.business-hours h4 {
  margin-bottom: 15px;
  color: var(--secondary-dark);
}

.business-hours p {
  margin-bottom: 10px;
}

.contact-form {
  flex: 1 1 500px;
  padding: 30px;
  background-color: white;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

.privacy-policy {
  display: flex;
  align-items: center;
}

.privacy-policy input {
  width: auto;
  margin-right: 10px;
}

.privacy-policy label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Footer */
.footer {
  background-color: var(--secondary-dark);
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

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

.footer-logo a {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

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

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

.footer h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

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

.footer ul li a:hover {
  color: white;
}

.footer-contact p {
  color: var(--medium-gray);
  margin-bottom: 10px;
}

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

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

/* Page Hero для внутренних страниц */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 150px 0 100px;
  overflow: hidden;
}

.page-hero.small-hero {
  min-height: 30vh;
  padding: 120px 0 80px;
}

.page-hero .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%);
}

.page-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-hero p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* About Page секции */
.about-page-section,
.privacy-section,
.terms-section {
  padding-top: 100px;
}

.about-page-section .about-content {
  margin-bottom: 80px;
}

.team-section {
  padding-top: 50px;
}

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

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

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

.team-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* CTA секция */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(0, 45, 90, 0.8) 100%);
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  color: white;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Contact Page секция */
.contact-page-section {
  padding-top: 100px;
}

.contact-info-section {
  margin-bottom: 80px;
}

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

.contact-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-offices {
  margin-bottom: 80px;
}

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

.office-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.office-image {
  height: 250px;
  overflow: hidden;
}

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

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

.office-content {
  padding: 25px;
}

.map-section {
  margin-top: 80px;
}

.map-container {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-form-section {
  margin-bottom: 80px;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.form-intro {
  flex: 1 1 400px;
}

/* Privacy и Terms секции */
.privacy-content,
.terms-content {
  background-color: white;
  padding: 50px;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-intro,
.terms-intro {
  margin-bottom: 40px;
}

.privacy-section,
.terms-section {
  margin-bottom: 30px;
}

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

.privacy-section ul,
.terms-section ul {
  margin-bottom: 20px;
}

/* Success страница */
.success-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 0;
  background-color: var(--light-gray);
}

.success-content {
  background-color: white;
  padding: 50px;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.what-next {
  margin: 40px 0;
  text-align: left;
}

.what-next h2 {
  margin-bottom: 20px;
  text-align: center;
}

.what-next ol {
  max-width: 600px;
  margin: 0 auto;
}

.what-next li {
  margin-bottom: 10px;
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.additional-resources {
  padding: 80px 0;
  background-color: white;
}

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

/* Cookies consent */
#cookie-consent {
  font-family: 'Nunito', sans-serif;
}

#accept-cookies {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--light-gray) !important;
}

/* Animations */
[data-animation] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

[data-animation].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animation="animate__fadeInLeft"] {
  transform: translateX(-50px);
}

[data-animation="animate__fadeInLeft"].in-view {
  transform: translateX(0);
}

[data-animation="animate__fadeInRight"] {
  transform: translateX(50px);
}

[data-animation="animate__fadeInRight"].in-view {
  transform: translateX(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 60px;
  }
  
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 50px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-icon {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .process-timeline:before {
    left: 30px;
  }
  
  .process-item {
    flex-direction: column !important;
    padding-left: 60px;
  }
  
  .process-number {
    left: 30px;
    top: 0;
  }
  
  .process-content,
  .process-image {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 40px;
  }
  
  section {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-content,
  .contact-form-wrapper {
    flex-direction: column;
  }
  
  .privacy-content,
  .terms-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .success-buttons {
    flex-direction: column;
  }
}