* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", serif;
  line-height: 1.8;
  color: rgb(71, 85, 105);
  background: #fff;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.logo {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgb(71, 85, 105);
  letter-spacing: 0.1em;
  font-family: "Times New Roman", serif;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 4rem;
  color: #444;
  line-height: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: rgb(71, 85, 105);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border: 2px solid rgb(71, 85, 105);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: transparent;
  color: rgb(71, 85, 105);
}

.features-section {
  padding: 8rem 2rem;
  background: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgb(71, 85, 105);
  margin: 2rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  text-align: left;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgb(71, 85, 105);
}

.feature-number {
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: rgb(71, 85, 105);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.feature-description {
  color: #666;
  line-height: 2;
  font-size: 1rem;
}

.cities-section {
  padding: 8rem 2rem;
  background: #fff;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.city-card {
  background: #fafafa;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.city-card a {
  padding: 2.5rem;
  text-decoration: none;
  position: relative;
  display: block;
}
.city-card a:before {
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22195%22%20height%3D%22195%22%20viewBox%3D%220%200%20195%20195%22%3E%0D%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_13%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2013%22%20transform%3D%22translate%28156%20-1125%29%22%3E%0D%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_33%22%20data-name%3D%22%E3%83%91%E3%82%B9%2033%22%20d%3D%22M195%2C0V195H0Z%22%20transform%3D%22translate%28-156%201125%29%22%20fill%3D%22%23475569%22%2F%3E%0D%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_34%22%20data-name%3D%22%E3%83%91%E3%82%B9%2034%22%20d%3D%22M0%2C4.411H93.6L66.231-18.772%22%20transform%3D%22translate%28-78.472%201276.089%29%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%224%22%2F%3E%0D%0A%20%20%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat center center;
  background-size: contain;
}

.city-card:hover {
  border-color: rgb(71, 85, 105);
  background: #fff;
}

.city-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgb(71, 85, 105);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.city-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.community-section {
  padding: 8rem 2rem;
  background: #fafafa;
  text-align: center;
}

.community-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.community-description {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: rgb(71, 85, 105);
  background: #fafafa;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: rgb(71, 85, 105);
}

.stat-label {
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
}

.footer {
  background: rgb(71, 85, 105);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer p {
  margin-bottom: 2rem;
  color: #ccc;
  font-size: 1rem;
}

.footer-links {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #555;
}

@media (max-width: 768px) {
  .logo {
    font-size: 3rem;
  }
  .tagline {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .community-title {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .feature-card {
    padding: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
.feature-card,
.stat-item,
.city-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.stat-item::before,
.city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(71, 85, 105, 0.02);
  transition: left 0.5s ease;
}

.feature-card:hover::before,
.stat-item:hover::before,
.city-card:hover::before {
  left: 0;
}/*# sourceMappingURL=style.css.map */