<!-- start Simple Custom CSS and JS -->
<style type="text/css">
@font-face {
    font-family: 'LibreBaskerville';
    src: url('https://eveni-floral.com/wp-content/themes/hello-elementor/fonts/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.faq {
    max-width: 1200px;
    margin-bottom: 20px;
    background: #f5f1ec; /* Background color */
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #ccc; /* Line at bottom of each FAQ */
    padding: 10px 0;
    overflow: hidden; /* Ensure content is contained within the border */
}

.faq-question {
    cursor: pointer;
    padding: 15px 50px 15px 10px; /* Adjust padding to include space for the icon */
    background: #f5f1ec;
    position: relative; /* To position the plus/minus icons */
    font-family: 'LibreBaskerville', serif;
    font-size: 12px; /* Increased font size */
    font-weight: 400; /* Adjust font weight for better visibility */
	letter-spacing: 1.2px;
    line-height: 1.5;
    color: #343434;
	text-transform: uppercase;
}

.faq-question:after {
    content: '+';
    font-size: 26px;
	font-family: 'LibreBaskerville', serif;
    position: absolute;
    right: 10px; /* Adjust this value to bring the icon closer to the edge */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s; /* Faster transition */
	color: #343434;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Slightly slower transition */
    padding: 0 40px;
	font-family: 'LibreBaskerville', serif;
    font-size: 12px; /* Smaller font size for answers */
    line-height: 1.5;
	color: #414141;
	letter-spacing: 1.2px;
}

.faq-answer p {
    margin: 0;
    max-width: 1000px;
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.faq-answer li {
    margin-bottom: 5px;
}
/* Additional styles for mobile responsiveness */
@media (max-width: 600px) {
    .faq-question {
        font-size: 12px; /* Adjust font size for smaller screens */
        padding-right: 30px; /* Ensure padding for icon */
        max-width: calc(100% - 0px); /* Limit width to keep fixed distance from icon */
        white-space: normal; /* Ensure text wraps to the next line if needed */
		color:#343434;
		
    }

    .faq-answer {
        padding: 0 10px; /* Remove padding to allow full width usage */
        font-size: 12px; /* Smaller font size for answers on mobile */
		color: #414141;
        word-wrap: break-word; /* Ensure long words are wrapped */
    }
}

</style>
<!-- end Simple Custom CSS and JS -->
