.intro1 {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 20px 5%;
    max-height: 180px; 
    gap: 40px;
    width:100%;
    background-color: #f8d7da;
    box-sizing: border-box;
    overflow: hidden;
}
.logo1 {
    width: 35%; 
    max-width: 300px; 
    max-height: 150px;
}

.intro-text1 {
    width: 55%; 
    text-align: left;
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: #4a2c2a;
    line-height: 1.4;
    padding-left: 5%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    white-space: normal; 
    overflow: visible; 
    text-overflow: clip;
}
.intro-text1 h2 {
    font-family: 'Great Vibes',cursive;
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 800;
    white-space: nowrap; 
    margin-bottom: 5px;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8d7da; 
    color: #333; 
}
.faq-header{
    background-color: #f8d7da; 
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 2px solid #e49ab0;
    font-size:30px;
  }
  .faq-header h1{
    font-family:'Great Vibes', sans-serif;
    font-size:60px;
  }
  .accordion {
    background-color:#f8d7da;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem;
    background-color: #ffeef3;
    cursor: pointer;
    transition: background 0.3s;
  }
  .faq-question:hover,
.faq-question[aria-expanded="true"] {
  background-color: #ffd6e5;
}
.faq-answer {
    padding: 1rem;
    border-left: 4px solid #ff99bb;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
.visually-hidden{
  position:absolute;
  left:-9999px;
}