body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #000000, #2e2e2e, #dcdcdc);
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background: #ffffff10;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ffffff30;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: #ffffff10;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ffffff30;
}

.social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.social a svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social a:hover svg {
  transform: scale(1.1);
  opacity: 1;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

.social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.social a svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social a:hover svg {
  transform: scale(1.1);
  opacity: 1;
}
