
.contact-container {
  max-width: 1600px;
  margin: 40px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 14px;
  margin-bottom: 50px;
  color: var(--text-color);
  font-weight: 400;
}

.contact-content {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

/* Form styles */
.contact-form {
 
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {

  width: 100%;
  background-color:var(--card-background-color);
  border: none;
  border-radius: 40px;
  padding: 15px 25px;
  font-size: 16px;
  font-family: var(--font-text);
  color: var(--primary-color);
  outline: none;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a188a6;
}

.contact-form textarea {
  border-radius: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Submit button */
.contact-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 80px;
  font-family: var(--font-heading);
  font-size: 16px;
  cursor: pointer;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #3d215d;
}


.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Responsive */
/* Responsive */
@media (max-width: 720px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-info, 
  .contact-form {
    max-width: 100%;
  }
  .contact-form button {
    width: 100%;
    padding: 15px 0;
  }
  .contact-container

 {
 
    margin: 0px auto 80px;
 }
}

