html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: "Montserrat", Arial, sans-serif;
  flex: 1 0 auto;
}

.contact-container h1 {
  margin-top: 0;
  font-size: 28px;
  color: #111;
}

.contact-container p {
  color: #333;
  line-height: 1.6;
}

.contact-ways {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.contact-ways li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 16px;
}

.contact-ways a {
  color: #0b67ff;
  text-decoration: none;
}

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

.contact-note {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
}

.notice {
  background: #e6ffed;
  border: 1px solid #b9f2c9;
  padding: 10px 12px;
  color: #0b6f3a;
  border-radius: 4px;
}

.site-footer {
  margin-top: auto;
}

