body {
  font-family: 'DM Sans', sans-serif;
  background: #f8f6f2;
  margin: 0;
  color: #111;
}

header {
  padding: 60px 20px 20px;
  text-align: center;
  position: relative;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
}

.lang-switch {
  position: absolute;
  top: 15px;
  right: 15px;
}

.lang-switch button {
  background: #111;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 20px auto;
  padding: 0 15px;
}

input {
  width: 100%;
  padding: 16px 40px 16px 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

#clearBtn {
  position: absolute;
  right: 25px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 18px;
}

.suggestions {
  position: absolute;
  width: calc(100% - 30px);
  background: white;
  border-radius: 10px;
  margin-top: 5px;
  z-index: 10;
}

.suggestion-item {
  padding: 12px;
}

.suggestion-item:hover {
  background: #eee;
}

#results {
  max-width: 700px;
  margin: 20px auto;
  padding: 0 15px;
}

.card {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.save-box {
  background: #e8fff0;
  border: 1px solid #b7f5c5;
  font-weight: bold;
}

.ad-slot {
  margin: 20px;
  padding: 10px;
  background: white;
  border-radius: 10px;
  text-align: center;
}

.example-grid {
  display: grid;
  gap: 10px;
  padding: 0 15px;
}

@media (min-width: 700px) {
  .example-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #777;
}

.seo-content{
    margin: 20px;
}

.info {
    margin: 20px;
}

/* Добавь к существующим стилям */
.alt-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #e84c2b; /* Акцент на бренд */
  transition: transform 0.2s;
}

.alt-card:hover {
  transform: translateX(5px);
}

.alt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.download-btn {
  background: #e84c2b;
  color: white;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
}

.alt-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* Слот под рекламу */
.ad-slot {
  border: 1px dashed #ccc;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #888;
}