
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0f14;
  color: #f0f0f0;
}

.hero {
  background: linear-gradient(to right, #11131a, #1a1d24);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #4caf50;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.category-card {
  background-color: #1a1d24;
  border: 1px solid #2a2d36;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.category-card h2 {
  color: #4caf50;
}

.category-card p {
  color: #aaa;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #45a045;
}

.main-footer {
  background-color: #11131a;
  padding: 30px 20px;
  text-align: center;
  color: #888;
  border-top: 1px solid #2a2d36;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  margin: 0 10px;
  text-decoration: none;
}

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

.server-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.server-box {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.server-box .price {
  font-size: 1.8em;
  color: #4caf50;
  margin-bottom: 10px;
}

.server-box .price span {
  font-size: 0.6em;
  color: #333;
}

.server-box h3 {
  margin: 10px 0;
  font-size: 1.3em;
}

.server-box p {
  margin: 5px 0 15px;
  color: #555;
}

.server-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.server-box ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

.server-box .order-now {
  margin-top: auto;
  background-color: #4caf50;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.server-box .order-now:hover {
  background-color: #45a045;
}
