.rental-conditions-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.rental-conditions-toggle {
    background-color: #f0c808;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.rental-conditions-toggle:hover {
    background-color: #e0b800;
}

.rental-conditions-toggle i {
    transition: transform 0.3s ease;
}

.rental-conditions-toggle.active i {
    transform: rotate(180deg);
}

.rental-conditions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.rental-conditions-content.show {
    max-height: 2000px; /* Augmenter la hauteur maximale pour s'assurer que tout le contenu est visible */
    overflow-y: auto;
    padding: 15px;
}

.rental-conditions-text {
    white-space: pre-line;
    font-size: 14px;
    line-height: 1.5;
}
