.contactusSection {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 50px;
}

.contentWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.info, .formContainer {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.infoTitle, .formTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.info p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
}

.map {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.form {
  display: flex;
  flex-direction: column;
}

.input, .textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background-color: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus, .textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.textarea {
  height: 375px;
  resize: vertical;
}

.button {
  padding: 16px 24px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.button:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
} 