.contact-section {
  padding: 60px 10%;
  text-align: center;
}

.contact-section h2 {
  color: #08afd1;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  color: #333;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #08afd1;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 119, 182, 0.3);
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info h3 {
  color: #0077b6;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 8px;
  color: #444;
}

/* Button reuse */
.btn {
  display: inline-block;
  background: #00b4d8;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0096c7;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
}