* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f172a; /* Hukuk için uygun, ciddi bir koyu lacivert */
  color: #f1f5f9;
  font-family: "Roboto", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05); /* Hafif şeffaf bir kutu */
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

h1 {
  font-family: "Playfair Display", serif; /* Başlık için daha şık bir font */
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.divider {
  border: 0;
  height: 1px;
  background: #334155;
  margin: 20px auto;
  width: 50%;
}

.description {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.contact-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #d4af37; /* Altın rengi detay */
  color: #0f172a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #e2c050;
}

footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #64748b;
}

/* Basit bir animasyon */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mobil uyumluluk */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  .container {
    padding: 20px;
  }
}
