:root {
  /* Основная палитра */
  --primary-color: #2c9cdb;
  --primary-dark: #1e7eb5;
  --primary-light: #60b8e7;
  --secondary-color: #27ae60;
  --secondary-dark: #1e884a;
  --secondary-light: #5fd08e;
  --accent-color: #f39c12;
  --accent-dark: #d68910;
  --accent-light: #f7be69;
  
  /* Нейтральные цвета */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #f8f8f8;
  --background-light: #ffffff;
  --background-grey: #f5f7fa;
  --background-dark: #2a2a2a;
  
  /* Неоморфные тени */
  --shadow-light: 6px 6px 12px rgba(0, 0, 0, 0.05), -6px -6px 12px rgba(255, 255, 255, 0.8);
  --shadow-pressed: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  --shadow-dark: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* Размеры и радиусы */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --container-padding: 5%;
  --section-spacing: 80px;
  --card-spacing: 24px;
  
  /* Переходы */
  --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: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5em;
}

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

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8em;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-sm);
}

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

li {
  margin-bottom: 0.5rem;
}

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

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  border: none;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-light);
  background-color: var(--primary-color);
  color: white;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  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: var(--shadow-pressed);
}

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

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

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

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

.tertiary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

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

/* Заголовки секций */
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

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

/* Header */
.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);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.logo a {
  color: inherit;
  text-decoration: none;
}

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

.desktop-nav li {
  margin: 0 0 0 1.5rem;
}

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

.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 {
  color: var(--primary-color);
}

.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;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

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

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

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 0.8rem 2rem;
  color: var(--text-dark);
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  margin-bottom: var(--section-spacing);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

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

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

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

/* Services Section */
.services {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

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

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

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

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  text-align: 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: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  flex: 1;
}

/* Projects Section */
.projects {
  padding: var(--section-spacing) 0;
  background-color: var(--background-grey);
}

.projects-slider {
  position: relative;
  margin-top: 2rem;
}

.slider-container {
  overflow: hidden;
}

.slide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  background-color: white;
  box-shadow: var(--shadow-light);
}

.image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  text-align: center;
}

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

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

.slide-content {
  padding: 1.5rem;
}

.slide-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-progress {
  flex: 1;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-width: 400px;
  position: relative;
}

.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  width: 25%;
  transition: width var(--transition-medium);
}

.prev-btn, .next-btn {
  background-color: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-light);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Sustainability Section */
.sustainability {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.sustainability-metrics {
  margin-top: 4rem;
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.metric {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.metric:hover {
  transform: translateY(-5px);
}

.metric-value {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.metric p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery {
  padding: var(--section-spacing) 0;
  background-color: var(--background-grey);
}

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

.gallery-item {
  height: 200px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

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

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

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.modal.active {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--border-radius-md);
  margin: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--primary-color);
}

#modal-caption {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.scenes-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.scenes-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background-color: white;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.scenes-item:hover {
  transform: translateY(-5px);
}

.scenes-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Resources Section */
.resources {
  padding: var(--section-spacing) 0;
  background-color: var(--background-grey);
}

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

.resource-card {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
}

.resource-card h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

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

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

.resource-card a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

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

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

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

/* Success Stories Section */
.success-stories {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

.testimonial {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.client-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.client-info p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: Georgia, serif;
}

/* Partners Section */
.partners {
  padding: var(--section-spacing) 0;
  background-color: var(--background-grey);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.partner:hover {
  transform: translateY(-5px);
}

.partner img {
  height: 80px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.partner h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-dark);
}

/* FAQ Section */
.faq {
  padding: var(--section-spacing) 0;
  background-color: var(--background-light);
}

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background-color: white;
  border: none;
  cursor: pointer;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  box-shadow: none;
  border-radius: 0;
}

.accordion-toggle:after {
  content: '+';
  font-size: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-medium);
}

.accordion-toggle.active:after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-medium);
  background-color: white;
}

.accordion-content.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Contact Section */
.contact {
  padding: var(--section-spacing) 0;
  background-color: var(--background-grey);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.map-container {
  margin-top: 1rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  height: 300px;
}

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

.contact-form {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  background-color: #f8f8f8;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

.footer-column li {
  margin-bottom: 0.8rem;
}

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

.footer-column a:hover {
  color: white;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
}

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

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

.copyright {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

.slide-in {
  animation: slideIn 1s ease forwards;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--background-light);
}

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

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.success-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.success-content p {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* Privacy & Terms pages */
.page-content {
  padding: 120px 0 80px;
}

.page-content .container {
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  padding: 3rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

/* Particle animation */
.particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 60px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .social-links {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 40px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .page-content .container {
    padding: 2rem;
  }
}

/* Стили для активного мобильного меню */
body.menu-open {
  overflow: hidden;
}

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