
  
.faqs-container {
    width: 100%;
}
  
 
.faqs-container  .hero-content {
    background-image: url("../images/bed-and-breakfast-5.jpg");
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}
  
  /* .faqs-container  .hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    z-index: 1;
  }
   */
 
.faqs-container .title-text{
    z-index: 2;
    background-color: rgb(0 0 0 / 17%);;
    padding: 48px;
    position: absolute;
    bottom: 42px;
    width: 40%;
}
  
.faqs-container  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: #b8e2d0;
    margin-bottom: 10px;
    text-align: center;
}
  
.faqs-container  .hero-subtitle {
    color: #b8e2d0;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
}
.faqs-container .section-bg{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fcf8f3 !important;
}
  /* faqs Section */
.faqs-container .faqs-section {
  
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 56px;
}
  
.faqs-container .faqs-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}
  
.faqs-container .section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}
  
.faqs-container  .faqs-text p {
    margin-bottom: 20px;
  
    color: #555;
}
  
  /* Features Grid */
.faqs-container  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    
}
  
.faqs-container .feature-card {
    background-color: #fff;
    border: 1px solid #998F89;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.faqs-container  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
  
.faqs-container .icon-container {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.faqs-container .icon-container img {
    width: 100%;
    height: auto;
    fill: #a67c52;
}
  
.faqs-container .feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}
  
.faqs-container .feature-card p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.faqs-bg{
    background-color: #fcf8f3 !important;
}

.faqs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px;
  
    }
        
.faqs-content .tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    }
        
.faqs-content .tab-button {
    padding: 32px 12px;
    background-color: #ffffff;
    border: 2px solid #b3e6ca;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 19%;
    text-align: center;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    justify-content: center;
    box-shadow: inset 0px 0px 0px 10px #b3e6ca;
}
        
.faqs-content .tab-button.active {
    background-color: #b3e6ca;
    }
        
.faqs-content .tab-content {
    display: none;
    }
        
.faqs-content .tab-content.active {
    display: block;
    width: 90%;
    margin: 0 auto;
    }
        
.faqs-content .faq-item {
    margin-bottom: 15px;
    border: 1px solid #997b68;
    /* background-color: #fff; */
    }
.faqs-content .faq-item.active {
    
    background-color: #fff;
    }
        
.faqs-content .faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
        
.faqs-content .faq-question .icon {
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
    margin-left: auto;
    background-color: #997b68;
    border-radius: 999px;
}
.faqs-content .faq-item.active .faq-question .icon {
    content: "remove"; /* no es necesario realmente */
}
        
.faqs-content .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    }
        
.faqs-content .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
    }
        
.faqs-content .faq-answer p {
    line-height: 1.6;
    color: #555;
    }


@media (max-width: 768px) {
  

    .faqs-container .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faqs-container .hero-title {
        font-size: 2.5rem;
    }
    
    .faqs-container .section-title {
        font-size: 2rem;
    }
    .faqs-container .hero-content{
        justify-content: center;
    }
    .faqs-container .title-text {
        width: 80%;
    }
    .faqs-container .faqs-section{
        flex-direction: column;
        margin: 40px;
    }
    .faqs-container .faqs-text{
        margin: 0;
    }
    .faqs-content .tab-button{
        width: 48%;
        font-size: 12px;
       
    }
    .faqs-content .tabs{
        justify-content: center;
    }
  
}
 
  