* {
    margin: 0;
    padding: 0;
}


.contact-container{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    margin-top: -12px;
}
.max-container {
    max-width: 1300px;
    margin: 0 auto;
  }

  .hero-section {
    width: 100%;
    height: 70vh;
    background-color: #f7941d; 
    position: relative;
    border-bottom-left-radius: 50% 30%;
    border-bottom-right-radius: 50% 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background: white;
    width: 60%;
    margin: 0 auto;
    padding: 4em;
    position: absolute;
    height: 600px;
    bottom:-290px;
    left:20%;
    border-radius: 10px;
    gap: 61px;

}

.contact-texts{
    margin-top: -160px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    
}

.contact-info img{
    width: 100px;
    margin-bottom: 20px;
    border: 1px solid rgb(233, 233, 233);
    border-radius: 6px;
}

.embed-map-frame{
    width:100% !important;
    height:auto!important;
}


.spacer{
    margin-top: 400px;
}



  /* FAQ container */
  .faq-section {
    max-width: 1150px;    
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    
  }

  /* Top header styling */
  .faq-header {
    background: #fff7e6;
    padding: 2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .faq-header h2 {
    font-size: 1.5rem;
    color: #344767;
  }
  .faq-header .toggle-icon {
    font-size: 1.5rem;
    color: #333;
    transition: transform 0.3s ease;
  }

  /* Top content container using dynamic height transition */
  .faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: #fff;
  }
  
  /* Fade transition for paragraphs inside the content */
  .faq-content p {
    opacity: 0;
    margin-top: 20px;
    transition: opacity 0.7s ease 0.5s;
  }
  
  /* When open, show content and fade in text */
  .top-item.open .faq-content {
    max-height: 500px; /* set high enough to accommodate content */
    padding-bottom: 1rem;
    margin-bottom: 20px;
  }
  .top-item.open .faq-header .toggle-icon {
    transform: rotate(180deg);
  }
  .top-item.open .faq-content p {
    opacity: 1;
    transition: 0.4s;
  }

  /* Question items styling */
  .question-item {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .question-title {
    background: rgb(244, 244, 248);
    padding: 2rem 1.5rem;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .question-title h3 {
    font-size: 1.5rem;
    color: #344767;
  }
  .question-title .toggle-icon {
    font-size: 1.3rem;
    color: #333;
    transition: transform 0.3s ease;
  }
  
  .question-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
  }
  .question-content p {
    opacity: 0;
    margin-top:20px;
    transition: opacity 0.4s ease 0.2s;
  }
  .question-item.open .question-content {
    max-height: 500px; /* ensure this is tall enough */
    padding-bottom: 1rem;
  }
  .question-item.open .question-title .toggle-icon {
    transform: rotate(180deg);
  }
  .question-item.open .question-content p {
    opacity: 1;
  }

  .help-card {
    max-width: 1000px;
    margin: 100px auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  /* Left text container */
  .help-text {
    max-width: 70%;
  }

  .help-text h2 {
    letter-spacing: 2px;
    color: #333;
  }

  .help-text p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
  }

  .help-text a {
    color: #007BFF;
    text-decoration: none;
  }

  /* Button styling */
  .help-btn {
    display: inline-block;
    background-color: #ff8c42;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }

  .help-btn:hover {
    background-color: #ff7a29;
  }

  /* Responsive behavior for smaller screens */
  @media (max-width: 600px) {
    .help-card {
      flex-direction: column;
      align-items: flex-start;
    }
    .help-text {
      max-width: 100%;
      margin-bottom: 1rem;
    }
    .help-btn {
      align-self: flex-start;
    }
  }
@media (max-width:1300px) {
    .hero-content {
        padding: 32px;
        flex-direction: column;    
    }

    .contact-info{
        flex-direction: row;
    }
}

@media (max-width:760px) {
    .spacer{
        margin-top: 600px;
    }
    .hero-content {
        left: 0;
        bottom: -400px;
        width: 100%;
        padding: 32px;
        border-radius: 0;
        flex-direction: column;    
    }

    .contact-info{
        flex-direction: column;
    }

    .hero-section {
        border-radius: 0;
    }
}