body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6f2ed;
  color: #1c1c1c;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: #007a5e;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #007a5e;
  font-weight: 500;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #d1f0e2;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 15px 0 30px;
}

.cta {
  background-color: #007a5e;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.cta:hover {
  background-color: #00614b;
}

.cta.big {
  font-size: 18px;
  padding: 14px 32px;
  margin-top: 20px;
}

/* Main Card Section */
.main-card {
  background-color: #ffffff;
  margin: 40px auto;
  max-width: 1000px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Domain List Grid */
.domain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

/* Domain Card */
.domain-item {
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.domain-item:hover {
  transform: translateY(-5px);
}

.domain-info h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.domain-info p {
  font-size: 14px;
  color: #555;
  margin: 0 0 12px;
}

.domain-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.offer-btn {
  background-color: #ff914d;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.offer-btn:hover {
  background-color: #e8752f;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #007a5e;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background-color: #052e16;
  color: white;
  font-size: 14px;
}



.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-contact a img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: white;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.floating-contact a img:hover {
  transform: scale(1.1);
}
