* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

body {
  background: linear-gradient(135deg, #bbbbbb, #f8fafc);
  color: #0f172a;
}

.container {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.container {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}


h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.contact {
  margin-top: 20px;
}

.contact-card {
  margin-top: 15px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  row-gap: 10px;
  text-align: left;
  line-height: 1.6;
}

.contact-item {
  display: contents;
}
.contact-title {
  grid-column: 1 / -1;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-label {
  font-weight: 600;
}


.contact-value br {
  line-height: 1.4;
}

.contact-item strong {
  display: inline-block;
  width: 110px;
}

.contact a {
  color: #267da2;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 30px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.5rem;
  }
}