/* Contact Section */
.contact {
  background: linear-gradient(135deg, #ffffff, #f7faff);
  padding: 80px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 3.5rem;
  color: #0056ff;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-header p {
  font-size: 1.6rem;
  color: #555555;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 2.2rem;
  color: #0056ff;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  font-size: 1.4rem;
  color: #555555;
  margin-bottom: 15px;
}

.contact-info ul li a {
  color: #0056ff;
  text-decoration: none;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 2;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 2.2rem;
  color: #0056ff;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  font-size: 1.4rem;
}

.contact-form button {
  background-color: #0056ff;
  color: white;
  padding: 15px 30px;
  font-size: 1.6rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #003cb0;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-form .form-group {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 3rem;
  }

  .contact-header p {
    font-size: 1.4rem;
  }

  .contact-info ul li {
    font-size: 1.3rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.3rem;
  }

  .contact-form button {
    font-size: 1.4rem;
  }
}
