.contactusSection {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.contentWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.info, .formContainer {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.infoTitle, .formTitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.form {
  display: flex;
  flex-direction: column;
}

.input, .textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
}

.textarea {
  height: 375px;
  resize: vertical;
}

.button {
  padding: 15px;
  background-color: #0070f3;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #005bb5;
} 