@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.a{
  text-decoration:none;
  
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info h2 {
  color: #15b151;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #666;
}

.details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.details .detail-item i.icon {
  font-size: 30px; /* Adjust size */
  color: #15b151;
  margin-right: 15px;
  margin-top: 5px; /* Raise icons */
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #15b151;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.contact-form button {
  background-color: #15b151;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #15b151;
}

.appointment-button {
  background-color: #15b151;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px; /* Space above button */
}

.appointment-button:hover {
  background-color: #58cf86;
}
.appointment-button a{
  color:inherit;
  text-decoration:none;
}
.details a {
  color: inherit; /* Inherit the text color */
  text-decoration: none; /* Remove underline */
}

.details a:hover {
  text-decoration: underline; /* Underline on hover for clarity */
}

/* Responsive Styles */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
  }

  .contact-info, .contact-form {
    flex: 1;
  }

  .contact-info {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 10px;
  }

  .contact-container {
    padding: 15px;
  }

  .contact-form input, .contact-form textarea {
    padding: 8px;
  }

  .contact-form button {
    padding: 8px 15px;
  }

  .details .detail-item i.icon {
    font-size: 25px; /* Smaller icons on small screens */
  }
}
