/* contact.css */

.contact-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 16px;
  text-align: center;
}

.contact-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
  font-family: "Inter", sans-serif;
}

.btn-submit {
  display: inline-block;
  background-color: #1a73e8;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #0d5dc5;
}

.contact-info {
  text-align: center;
  font-size: 1rem;
  color: #444;
}

.contact-info h2 {
  font-size: 1.3rem;
  color: #1a73e8;
  margin-bottom: 12px;
}

.contact-info a {
  color: #1a73e8;
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 600px) {
  .btn-submit {
    width: 100%;
  }
}
