.container {
  max-width: 860px;
  margin: 60px auto;
  padding: 36px 32px;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,32,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

body {
  height: 100dvh;
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  position: relative;
  border: solid 1px transparent;
  border-collapse: separate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #1a237e;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(44,83,100,0.08);
}

.subtitle {
  font-size: 1.15rem;
  color: #3949ab;
  margin-bottom: 1.5em;
  text-align: center;
}

.content {
  margin-bottom: 2em;
}

.value-text {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 1em;
  text-align: center;
}

.contact-button {
  display: inline-block;
  padding: 0.9em 2.2em;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,114,255,0.18);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-button:hover {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  box-shadow: 0 4px 24px rgba(0,114,255,0.28);
  transform: translateY(-2px) scale(1.04);
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.2em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0077ff;
  outline: none;
}

.form-button {
  padding: 0.8em;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-button:hover {
  background: #005fcc;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2em;
}

.logo {
  display: block;
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 12px rgba(0,114,255,0.10));
}

.for-sale {
  font-size: 1.1rem;
  color: #00c6ff;
  font-weight: 600;
  margin-left: 0.3em;
  letter-spacing: 0.5px;
}

.email-link-wrapper {
  margin-top: 1.2em;
  display: flex;
  justify-content: center;
}

.email-link {
  color: #0072ff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: underline dotted;
  transition: color 0.2s;
  word-break: break-all;
}

.email-link:hover {
  color: #00c6ff;
} 