body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6fafd;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 24px #0001;
  padding: 28px 48px 28px 48px;
  border-radius: 0 0 32px 32px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffd600;
  object-fit: cover;
  box-shadow: 0 2px 8px #ffd60044;
}
.logo-text {
  font-size: 2em;
  font-weight: bold;
  color: #2a7ae4;
  letter-spacing: 1.5px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #2a7ae4;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2em;
  padding: 10px 24px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover {
  background: #2a7ae4;
  color: #fff;
  box-shadow: 0 2px 12px #2a7ae455;
}
.hero {
  background: linear-gradient(120deg, #f6fafd 60%, #e3f0ff 100%);
  border-radius: 0 0 48px 48px;
  padding: 64px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 32px auto;
  box-shadow: 0 8px 32px #2a7ae410;
}
.hero-content {
  max-width: 600px;
  margin-left: 48px;
}
.hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-content p {
  font-size: 1.3em;
  margin-bottom: 32px;
}
.main-btn {
  display: inline-block;
  background: #2a7ae4;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 16px 40px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 16px #2a7ae433;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.main-btn:hover {
  background: #1856a7;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px #2a7ae488;
}
.hero-img {
  width: 340px;
  max-width: 45vw;
  border-radius: 18px;
  box-shadow: 0 4px 16px #0002;
}
.benefits {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px #2a7ae410;
  margin: 48px auto;
  padding: 48px 24px;
  max-width: 1000px;
}
.benefits h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 2em;
  font-weight: 700;
}
.benefit-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f6fafd;
  border-radius: 18px;
  box-shadow: 0 2px 16px #2a7ae410;
  padding: 32px 32px 28px 32px;
  min-width: 180px;
  max-width: 240px;
  margin: 12px 0;
  transition: box-shadow 0.2s, transform 0.2s;
  font-size: 1.1em;
}
.benefit-item:hover {
  box-shadow: 0 8px 32px #ffd60055, 0 0 24px #2a7ae455;
  transform: translateY(-4px) scale(1.04);
}
.benefit-icon {
  font-size: 3em;
  margin-bottom: 16px;
  color: #2a7ae4;
  filter: drop-shadow(0 2px 8px #ffd60033);
}
.info-block {
  background: linear-gradient(120deg, #e3f0ff 60%, #f6fafd 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px #2a7ae410;
  margin: 48px auto;
  padding: 48px 24px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.info-img { display: none; }
.info-text h2 {
  margin-bottom: 18px;
  font-size: 1.5em;
  font-weight: 700;
}
.info-text p {
  margin-bottom: 24px;
  font-size: 1.1em;
}
footer {
  background: #fff;
  padding: 28px 0;
  text-align: center;
  color: #888;
  font-size: 1.1em;
  border-top: 1px solid #eee;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 16px #2a7ae410;
}
.footer-content {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 1.1em;
  box-shadow: 0 -4px 24px #0003;
  border-radius: 18px 18px 0 0;
  opacity: 0.97;
}
.cookie-banner button {
  background: #ffd600;
  color: #222;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #ffd60055;
}
.cookie-banner button:hover {
  background: #ffe066;
  box-shadow: 0 4px 16px #ffd60099;
}
@media (max-width: 900px) {
  header, .hero, .info-block, .benefits {
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    gap: 12px;
  }
  .benefit-list {
    gap: 16px;
  }
  .info-block {
    flex-direction: column;
    gap: 18px;
  }
} 