body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

header {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 5em;
  text-transform: lowercase;
  color: #1A3C5A;
}

nav {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-transform: lowercase;
  transition: color 0.3s;
}

nav a:hover {
  color: #2E7D32; /* Зеленый акцент для эстетики */
}

.language-switch {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.language-switch a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.language-switch a:hover {
  color: #2E7D32;
}

.language-switch a.active {
  color: #2E7D32;
  font-weight: 600;
}

.hero {
  position: relative;
  width: 100%;
  padding-top: 36.32%; /* 928/1232 = 0.7532 для сохранения пропорций */
  overflow: hidden;
  background: linear-gradient(135deg, #e8ecef 0%, #f5f5f5 100%);
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Используем cover для заполнения, но сохраняем пропорции */
  opacity: 0.9;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 20px;
  background: rgba(26, 60, 90, 0.6); /* Полупрозрачный синий фон */
}

.hero h1 {
  font-size: 2.5em;
  margin: 0;
  text-transform: lowercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

h2 {
  color: #1A3C5A;
  font-size: 2em;
  text-transform: lowercase;
}

p {
  color: #666;
  margin: 10px 0;
}

footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.lang-ru { display: none; }
.lang-kk { display: none; }
.lang-en { display: none; }

@media (max-width: 768px) {
  header h1 {
    font-size: 3em;
  }
  .hero {
    padding-top: 50%; /* Уменьшаем для мобильных */
  }
  .hero h1 {
    font-size: 1.8em;
  }
  nav {
    flex-direction: column;
    gap: 10px;
  }
  .language-switch {
    flex-direction: column;
    gap: 5px;
  }
  .content section {
    padding: 10px;
    margin-bottom: 30px;
  }
}