body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #f8fafd;
  color: #222;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 1.5em;
  color: #2563eb;
}
nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #2563eb;
}
.hero {
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  color: #fff;
  padding: 64px 0 48px 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 12px;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 32px;
}
.search-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 24px 0 0 24px;
  font-size: 1em;
  outline: none;
}
.search-form button {
  padding: 12px 28px;
  border: none;
  border-radius: 0 24px 24px 0;
  background: #fff;
  color: #2563eb;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.search-form button:hover {
  background: #e0e7ff;
}
.domains {
  padding: 48px 0 32px 0;
}
.domains h2 {
  text-align: center;
  margin-bottom: 32px;
}
.domain-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.domain-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.07);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.domain-card:hover {
  box-shadow: 0 6px 24px rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.03);
}
.domain-card span {
  font-size: 1.1em;
  margin-bottom: 8px;
}
.domain-card .price {
  font-size: 1.3em;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 16px;
}
.domain-card button {
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.domain-card button:hover {
  background: #1e40af;
}
.steps {
  background: #f1f5f9;
  padding: 48px 0;
}
.steps h2 {
  text-align: center;
  margin-bottom: 32px;
}
.step-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 160px;
}
.step .icon {
  font-size: 2.5em;
  margin-bottom: 12px;
}
.step p {
  font-size: 1.1em;
  font-weight: 500;
}
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  margin-top: 32px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95em;
}
.footer-content a {
  color: #2563eb;
  text-decoration: none;
  margin-left: 8px;
}
@media (max-width: 700px) {
  .domain-list, .step-list, .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .nav {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
}