body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
}

header.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.brand a {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  text-decoration: none;
}

nav.links a {
  margin: 0 10px;
  color: #555;
  text-decoration: none;
}

nav.links a.active {
  color: black;
  font-weight: 600;
}

.contact-container {
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  background: #fafafa;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

input, select, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  padding: 10px 16px;
  border: none;
  background-color: black;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

button:disabled {
  background-color: #888;
  cursor: not-allowed;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group input {
  flex: 1;
}

#otpMsg {
  font-size: 0.9rem;
}

footer.site-footer {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  margin-top: 60px;
  background: #f5f5f5;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.col {
  flex: 1 1 200px;
}

.heading {
  font-weight: 700;
  margin-bottom: 8px;
}

.social-icons a {
  font-size: 1.3rem;
  color: black;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #888;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
  }
  .phone-group {
    flex-direction: column;
  }
}
