.about-section{
    margin-top: 10px;
    margin-bottom: 10px;
}
.about-section__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-section__image img {
  max-width: 400px;
  width: 100%;
  height: 250px;
  border-radius: 10%;
  object-fit: cover;
}

.about-section__content {
  flex: 1;
}

.about-section__text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .about-section__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-section__image img {
    max-width: 100%;
  }
}


/* Contact Page Styles */

    .contact-page {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .contact-page h1 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 10px;
      color: #ec6a8f;
    }
    
    .contact-page p {
      text-align: center;
      font-size: 18px;
      color: #555;
      margin-bottom: 40px;
    }

   .contact-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      justify-content: space-between;
      gap: 30px;
      margin-top: 50px;
    }
    
    .contact-card {
      height: 160px;
      width: 100%;
      background-color:#f1bdcc66;
      border-radius: 10px;
      text-align: center;
    }
    
    .contact-card img {
      width: 40px;
      height: 40px;
      margin-top: 20px;
      margin-bottom: 10px;
    }
    .contact-card h2 {
      color: white;
      font-size: 20px;
    }
    .contact-card p {
      color: #ec6a8f;
      font-size: 16px;
    }
    
    .contact-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-content: space-between;
      align-items: center;
      gap: 50px;
      margin-top: 80px;
    }
    
    
    .contact-map {
      background-color: white;
      width: 100%;
      height: 576px;
      border-radius: 10px;
     
    }
    
    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 10px;
    }
    
    .get-in-touch-form {
      background-color:#f1bdcc66;
      padding: 20px;
      border-radius: 10px;
      color: white;
    }
    
    .get-in-touch-form h2 {
      font-weight: 600;
      padding-bottom: 10px;
      margin-bottom: 20px;
      color:white;
    }
    
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-field {
      margin-bottom: 20px;
    }
    
    .form-field label {
      display: block;
      margin-bottom: 5px;
      font-size: 14px;
      color: #ec6a8f;
    }
    
    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: 10px;
      background-color:white;
      border: 1px solid #ec6a8f;
      color: #ec6a8f;
      border-radius: 5px;
    }
    
    .form-field textarea {
      resize: vertical;
    }
    
    .send-message-button {
      width: 40%;
      padding: 10px;
      margin-top: 20px;
      background-color: #ec6a8f;
      color: white;
      border: none;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .send-message-button span {
      font-size: 18px;
      margin-left: 10px;
    }
    
  
    @media (max-width: 748px) {
      .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .send-message-button {
        width: 100%;
      }
    }

    @media (min-width: 749px) and (max-width: 999px) {
       .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        }
        .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    } 
