/* Custom styles */
.project-tile {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
}

.contact-info, .contact-form {
  width: 45%;
}

/* Add any other custom styles here */
.contact-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-details, .contact-form {
  width: 48%;
}

@media (max-width: 768px) {
  .contact-details, .contact-form {
    width: 100%;
  }
}

.contact-details ul {
  list-style-type: none;
  padding: 0;
}

.contact-details li {
  margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.contact-form input[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: #0056b3;
}