.retreat-info {
    padding: 5rem 2%;
}

.tabs {
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 70px;
    background-color: #F5ECD7;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.tab {
    padding: 15px 24px;
    background-color: #F5ECD7;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1.2em;
    font-weight: bold;
    color: #564418;
    border-radius: 30px;
    font-weight: normal;
}


.tab.active {
    background-color: #4A3325;
    color: #FFF7EB;
}

.tab:hover {
    background-color: #BFA58A;
}

/* .content {
    text-align: left;

} */

.content {
    text-align: left;
    background: #F5ECD7;
    /* Light background */
    border-radius: 12px;
    /* Rounded corners */
    padding: 20px;
    /* Inner spacing */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    transition: box-shadow 0.3s ease-in-out;
}

.content:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on hover */
}



.question {
    padding: 20px 0;
    border-bottom: 1px solid #D6BBA2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex-wrap: wrap;
}

.question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #4A3325;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    font-weight: normal; /* or use font-weight: 400; */
}


.expand-btn {
    border: none;
    background: none;
    font-size: 1.4em;
    cursor: pointer;
    outline: none;
    color: #8B6F4F;
    transition: 0.3s ease;
    width: 40px;
}

.expand-btn.active {
    transform: rotate(180deg);
}

.answer {
    display: none;
    padding-top: 15px;
    line-height: 1.6;
    color: #6D5541;
    width: 100%;
}


.answer.open {
    display: block;
}

@media (max-width: 768px) {
    .tab {
        padding: 12px 24px;
        font-size: 1em;
        /* border-radius: 20px; */
    }
} 