:root {
  --petrol: #1a4a5c;
  --petrol-dark: #0e2f3c;
  --red: #c8202f;
  --text: #14282f;
  --text-muted: #4b6067;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Inter", sans-serif;
  color: var(--text);
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(244, 247, 248, 0.6), rgba(244, 247, 248, 0.6)), url("iStock-166189154.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 40, 47, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 48px 40px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(20, 40, 47, 0.12);
}

.logo {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.company {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--petrol-dark);
}

.address p,
.legal p,
.contact p {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.legal p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

hr {
  border: none;
  border-top: 1px solid rgba(20, 40, 47, 0.12);
  margin: 20px 0;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--petrol);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.contact a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--red);
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
  }

  .logo {
    margin-bottom: 24px;
  }
}
