/* Contact Section Styles */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .contact .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .contact .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .contact-details {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
  }
  
  .contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-details ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-details ion-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff; /* Change color as needed */
  }
  
  .contact-map {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Change color as needed */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .contact-form .btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
  }