@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7fafc;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  color: #4a5568;
}

.container {
  background: white;
  border-radius: 12px;
  border: 1px solid #e9eaeb;
  box-shadow:
    0 1px 3px rgba(16, 24, 40, 0.1),
    0 1px 2px rgba(16, 24, 40, 0.06);
  padding: 24px;
  width: 100%;
  max-width: 506px;
  margin: 16px 0 32px 0;
  box-sizing: border-box;
}

header h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181d27;
  margin-top: 0;
}

.divider {
  background-color: #eaecf0;
  height: 1px;
  width: 100%;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}

.contact-info h2 {
  font-size: 16px;
  line-height: 24px;
  color: #181d27;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.contact-info p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #414651;
}

.email-link {
  color: inherit;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.partners {
  margin-top: 16px;
}

.partners h2 {
  font-size: 16px;
  line-height: 24px;
  color: #181d27;
  font-weight: 500;
  margin: 0 0 8px 0;
}

.partner-links {
  display: flex;
  gap: 16px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid #d5d7da;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  font-weight: 600;
  transition: background-color 0.2s;
}

.partner-link:hover {
  background-color: #f7fafc;
}

footer p {
  font-size: 16px;
  line-height: 24px;
  color: #414651;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  body {
    justify-content: flex-start;
  }

  .container {
    margin: 48px 16px 32px 16px;
    padding: 16px;
    max-width: none;
    width: auto;
    align-self: stretch;
  }

  .contact-info {
    margin: 12px 0;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .contact-info > div {
    width: 100%;
  }

  header h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .partners {
    margin-top: 12px;
  }
}
