body {
  margin: 0;
  min-height: 100vh;
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  background: #f8fafc;
  color: #0f172a;
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  }

.page {
  width: min(1100px, 100%);
  padding: 24px 24px 0;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 80px #ececee;
  border: 1px solid #f5f5f6;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
}

h2 {
  color: #0f172a;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.logo img {
  width: 432px;
  max-width: 100%;
}

p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: #3a4150;
}

li {
  color: #3a4150;
}

.services {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  flex: 1;
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #dddddd;
  border-radius: 20px;
}

.service-link {
  display: inline-block;
  margin: 0.1rem 0 0.6rem;
  color: #3ba7ff;
  font-weight: 600;
  text-decoration: none;
}

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

.content-link {
  color: #3ba7ff;
  font-weight: 600;
  text-decoration: none;
}

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

.site-footer {
  margin-top: auto;
  padding: 20px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  color: #575d6a;
}

.site-footer > span:first-child {
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer a {
  color: #3ba7ff;
  text-decoration: none;
  font-weight: 400;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }
  .card {
    padding: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .services {
    flex-direction: column;
  }
}

@media (max-width: 1024px) and (min-width: 601px) {
  .page {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 800px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer nav span {
    display: none;
  }
}
