/* === Base and Layout === */
body {
  background-color: #0a0f1c;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 650px;
  margin: 60px auto;
  padding: 0 20px;
}

/* === Typography === */
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.locations {
  color: #c0c0c0;
  margin-bottom: 24px;
}

.intro {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.features {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.features li {
  margin: 6px 0;
}

/* === CTA Button === */
.cta {
  display: inline-block;
  background-color: #3cb179;
  color: #0a0f1c;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
}

.cta:hover {
  background-color: #34a06b;
  transform: scale(1.02);
}

/* === Contact Section Links === */
.contact a {
  color: #6aa9ff;
  text-decoration: none;
}

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

/* === Form Layout === */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* === Inputs & Textareas === */
form input,
form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid #283043;
  background-color: #11172a;
  color: #ffffff;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

form input::placeholder,
form textarea::placeholder {
  color: #8f9bb3;
}

form input:focus,
form textarea:focus {
  border-color: #3cb179;
  background-color: #161d33;
  box-shadow: 0 0 0 3px rgba(60, 177, 121, 0.25);
}

form textarea {
  min-height: 130px;
  resize: vertical;
}

/* === Submit Button === */
button[type="submit"] {
  grid-column: span 2;
  background-color: #3cb179;
  color: #0a0f1c;
  font-weight: 600;
  border: none;
  padding: 14px 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
}

button[type="submit"]:hover {
  background-color: #34a06b;
  transform: scale(1.02);
}

/* === Footer === */
.footer {
  color: #c0c0c0;
  margin-top: 30px;
  font-size: 0.9rem;
  text-align: left;
}