/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* BODY */
body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* CONTAINER */
.container {
  max-width: 400px;
  width: 100%;
}

/* PROFILE */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile h1 {
  font-size: 28px;
}

.profile p {
  font-size: 14px;
  color: #cbd5f5;
}

/* SERVICES */
.services h2 {
  margin-bottom: 15px;
}

.card {
  background: #1e293b;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.card:hover {
  background: #334155;
}

/* LINKS */
.links {
  margin-top: 20px;
}

.btn {
  display: block;
  text-decoration: none;
  background: #2563eb;
  color: white;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  background: #1d4ed8;
}

/* WHATSAPP */
.contact {
  margin-top: 20px;
}

.whatsapp {
  display: block;
  text-align: center;
  background: #25d366;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #94a3b8;
}