body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8fcff;
    color: #333;
  }
  
  .header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 20px;
    background-color: #ecf5fc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  }
  
  .logo img {
    width: clamp(60px, 10vw, 100px);
  }
  
  .header-title {
    text-align: center;
  }
  
  .header-title h1 {
    font-size: 1.8em;
    margin: 0;
  }
  
  .home-button {
    text-align: right;
  }
  
  .home-button a {
    background-color: #0077cc;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .home-button a:hover {
    background-color: #005fa3;
  }
  
  .contact-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .intro {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
  }
  
  button {
    background-color: #25d366;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #1ebc59;
  }
  
  .whatsapp-button {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
  }
  
  .whatsapp-button a {
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button a img {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-button a:hover {
    background-color: #1ebc59;
  }
  select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    background-color: white;
  }
  
  
  @media (max-width: 500px) {
    .header {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .home-button {
      margin-top: 10px;
    }
  }
  