/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background: #f9f9fb;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Hero */
header.hero {
  position: relative;
  background-color: #1a73e8;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 300px;
  background: rgba(0, 0, 0, 0.5); /* затемнение */
}

.hero-content {
  position: relative;
  z-index: 1;
}

header.hero h1 {
  margin: 0 0 15px;
  font-size: 2.8rem;
}

header.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}






/* Sections */
section {
  margin: 40px 0;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Use Cases */
.usecase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.usecase img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.usecase h3 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .usecase {
    grid-template-columns: 1fr;
  }
  .usecase img {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/* Call to Action */
.cta {
  text-align: center;
  background: #eef4ff;
  padding: 40px 20px;
  border-radius: 12px;
}

.cta h2 {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #4a90e2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #357abd;
}

/* Contacts + Form */
.contact-block {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 40px auto;
}

.contact p {
  display: flex;
  align-items: center;
  margin: 12px 0;
  font-size: 1rem;
}

.contact img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.feedback-form {
  margin-top: 30px;
}

.feedback-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 4px;
  font-size: 1rem;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-form button {
  background: #4a90e2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 10px;
}

.feedback-form button:hover {
  background: #357abd;
}

/* Footer */
footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}






.language-switch a img {
  transition: transform 0.2s;
  cursor: pointer;
}

.language-switch a img:hover {
  transform: scale(1.1);
}
