:root {
  --primary: #6182ba;
  --dark: #37517e;
}

/* Base */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1f2933;
  line-height: 1.6;
}

.page {
  padding: 80px 0 60px;
}

/* Logo */
.logo {
  max-width: 260px;
  height: auto;
}

/* Text blocks */
.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}

.company {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Contact */
.contact {
  margin-top: 30px;
  text-align: center;
}

.contact-item {
  font-size: 0.95rem;
  color: #374151;
}

.contact-item i {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-item strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .page {
    padding-top: 60px;
  }

  .logo {
    max-width: 220px;
  }

  .contact-item {
    margin-bottom: 24px;
  }
}
