/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.haleema-repeater-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.haleema-repeater-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.5;
}

.haleema-repeater-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #C7A671;
    color: #C7A671;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.haleema-repeater-list-white {
    list-style: none;
    padding: 0;
    margin: 0;
}
.haleema-repeater-list-white li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.5;
	color: #fff;
}

.haleema-repeater-list-white li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #C7A671;
    color: #C7A671;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

/* FAQS */

.scf-faq-accordion {
    width: 100%;
}

.scf-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.scf-faq-accordion .scf-faq-question {
    width: 100%;
	white-space: normal !important;
    background: transparent;
    border: 0;
	border-style: none;
    outline: none;
    padding: 28px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    text-align: left;
	letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}

.scf-faq-question span:first-child {
    font-family: Georgia, "Times New Roman", serif;
	white-space: normal !important;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.scf-faq-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
}

.scf-faq-icon::before,
.scf-faq-icon::after {
    content: "";
    position: absolute;
    background: #c99a2e;
    transition: transform 0.3s ease;
}

.scf-faq-icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
}

.scf-faq-icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

.scf-faq-item.active .scf-faq-icon::after {
    transform: rotate(90deg);
}

.scf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.scf-faq-answer-inner {
    padding: 0 34px 32px 34px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
}