body {
    background-color: #c2b19c;
    font-family: 'The Youngest', sans-serif;
    color: #623e2a;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.text-section {
    max-width: 50%;
}
.title {
    font-size: 3.3rem;
    margin-top: 8rem;
    font-family: 'TAN Meringue', serif;
    color: #623e2a;
}
.body-text {
    font-size: 1.1rem;
    font-family: 'The Youngest', sans-serif;
    color: #623e2a;
    margin-top: 20px;
}
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9rem;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

  /* Contact Section */
  .contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #d8c4aa;
   
    flex-grow: 1;
  }
  
  .contact-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  
  
  /* Contact Info */
  .contact-info {
    max-width: 500px;
    margin: 0 auto;
    background-color: #966e47;
    border-radius: 20px;
    color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin: 15px 0;
  }
  
  .contact-item i {
    color: #f8e8d6;
    font-size: 20px;
  }
  
  /* Feedback Form */
  .feedback-form {
    max-width: 500px;
    margin: 30px auto 0;
    background-color: #faf8f5;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0,0.1);
  }
  
  .feedback-form input,
  .feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
  }
  
  .feedback-form textarea {
    resize: none;
    height: 100px;
  }
  
  .feedback-form button {
    width: 100%;
    padding: 10px;
    background-color: #966e47;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .feedback-form button:hover {
    background-color: #7a5736;
  }