* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  color: #222;
}

.page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  width: 100%;
  max-width: 960px;
  background: #fff;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.logo {
  text-align: center;
  margin-bottom: 50px;
}

.logo img {
  max-width: 220px;
  height: auto;
}

.content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}

h1 {
  margin: 0 0 25px;
  font-size: 28px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 14px 0;
  margin-bottom: 18px;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #111;
}

.contact-form textarea {
  resize: vertical;
}

button {
  margin-top: 10px;
  border: none;
  background: #111;
  color: #fff;
  padding: 13px 34px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

button:hover {
  opacity: 0.8;
}

.infos {
  font-size: 16px;
  line-height: 1.7;
  padding-top: 58px;
}

.infos p {
  margin: 0 0 8px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 13px;
  color: #777;
}

.success {
  color: #15803d;
  margin-bottom: 20px;
}

.error {
  color: #b91c1c;
  margin-bottom: 20px;
}

.honeypot {
  display: none !important;
}

@media (max-width: 768px) {
  .card {
    padding: 40px 25px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .infos {
    padding-top: 0;
  }

  .logo img {
    max-width: 180px;
  }
}