body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #333;
  line-height: 1.6;
  font-family: 'Rubik', sans-serif;
}
body {
  background-color: #fafafa;
  background-image: url("texture.png"); /* полупрозрачная текстура */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

header {
  text-align: center;
  background-color: #f0f0ee;
  padding: 2rem 1rem;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.steps div {
  max-width: 120px;
  text-align: center;
}

.steps img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.info-block {
  margin-bottom: 2rem;
  background: #fcfcfc;
  padding: 1.5rem;
  border-left: 4px solid #ccc;
  border-radius: 6px;
}

h2 {
  color: #2a2a2a;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
footer {
  
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 3rem;
 
}

.footer-text {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  padding: 6px;
  border-radius: 50%; /* Слегка округлим на всякий случай */
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons img {
  width: 48px;
  height: 48px;
  display: block;
}

main, header, footer {
  margin-bottom: 2rem;
}
.steps div {
  margin-bottom: 1.5rem;
}

.language-switcher {
  text-align: right;
  padding: 1rem;
  font-size: 0.9rem;
}
.language-switcher a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #444;
}
.language-switcher a:hover {
  text-decoration: underline;
}