.main {
  padding: 40px 20px;
  text-align: center;
  background-color: #2c2c2c; /* или любой другой тёмный фон */
  color: #fff;
}



.page-link {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.page-link a {
  text-decoration: none;
  color: #666;
}

.page-link a,
.page-link span,
.page-description {
  color: #f6f6f6;
}

.main-logo img {
  max-width: 160px;
  margin: 20px 0;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 20px;
}

.page-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.main-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 30px 20px;
}

.main-photo img {
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
}

.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.about-header h2 {
  flex: 1 1 100%;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

.about-text {
  flex: 1 1 50%;
  max-width: 550px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-video {
  flex: 1 1 45%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.video-box img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  border: none;
  font-size: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-caption {
  margin-top: 10px;
  text-align: center;
}

.video-caption p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.video-caption strong {
  font-weight: 600;
  margin-top: 5px;
  display: block;
  color: #111;
}

/* === Mission === */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-mission h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-mission p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.about-mission blockquote {
  margin-top: 20px;
  padding: 15px 20px;
  background: #fff3e0;
  border-left: 4px solid #ffa726;
  font-style: italic;
  color: #333;
}


/* Production section */
.production-section {
  padding: 60px 20px;
  background: #fff;
}

.production-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.production-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffa726;
}

.production-header span {
  display: block;
  color: #ffa726;
}

.production-header p {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 480px;
}

.production-slider-wrapper {
  flex: 1 1 600px;
  max-width: 640px;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.slider-card {
  min-width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.slider-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.slider-controls button {
  background: #ffa726;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    flex-direction: column;
  }

  .slider-card {
    min-width: 90%;
  }
}

.about-section,
.production-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-header,
.production-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-header h2,
.production-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-header p,
.production-header p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .production-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .production-header p {
    max-width: 100%;
  }

  .production-slider-wrapper {
    width: 100%;
  }

  .slider-card {
    min-width: 100%;
  }

  .about-header {
    flex-direction: column;
    gap: 30px;
  }

  .about-header h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-text,
  .about-video {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .about-text p {
    text-align: justify;
  }
}
