body{
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
}
a {
  color: #00ff99;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  background-color: #111;
  padding: 20px 0;
  border-bottom: 2px solid #00ff99;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ff99;
}
.nav {
  margin-top: 10px;
}
.nav a {
  margin-right: 20px;
  font-size: 16px;
}

.intro {
  background-color: #222;
  padding: 40px 0;
  border-bottom: 1px solid #00ff99;
}
.intro-title {
  font-size: 32px;
  color: #00ff99;
  margin-bottom: 20px;
}
.intro-text {
  font-size: 18px;
  color: #ccc;
  max-width: 800px;
  line-height: 1.8;
}

.location {
  padding: 30px 0;
  border-bottom: 1px solid #333;
}
.location h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}
.location-type {
  font-size: 16px;
  color: #00ff99;
  font-style: italic;
}
.location ul {
  margin-top: 10px;
  padding-left: 20px;
}
.location ul li {
  margin-bottom: 8px;
}
/* Адаптивность */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .hero h2 {
    font-size: 24px;
    padding: 0 10px;
  }
}