.elementor-12237 .elementor-element.elementor-element-4c324162{--display:flex;}/* Start custom CSS for container, class: .elementor-element-4c324162 *//* --- General Page Styling (post-12237) --- */
.page-id-12237 .entry-content {
    font-family: 'Inter', sans-serif; /* Or your preferred theme font */
    color: #4A5568; /* Default text color */
    line-height: 1.7;
}

/* --- Main Content Containers (Elementor sections) --- */
.page-id-12237 .elementor-element-4c324162, /* Container for Termly iframe */
.page-id-12237 .elementor-element-2aca61f  /* Container for Arabic text */ {
    max-width: 900px; /* Control overall width */
    margin: 2em auto; /* Center the content with some top/bottom margin */
    padding: 25px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* Specific margin for the second box if needed */
.page-id-12237 .elementor-element-2aca61f {
    margin-top: 2.5em; /* Add more space if it's a distinct section */
}


/* --- Styling for the Termly iFrame Container --- */
.page-id-12237 .elementor-element-36da8d4 .elementor-widget-container {
    /* This container holds the iframe and the script */
}

.page-id-12237 .elementor-element-36da8d4 iframe[data-testid="policy-iframe"] {
    width: 100% !important; /* Ensure iframe takes full width of its container */
    min-height: 500px; /* Set a minimum height, adjust as needed */
    /* The height is dynamically set by Termly script, but we can guide it */
    border-radius: 6px; /* Optional: if you want rounded corners on the iframe itself */
    display: block; /* Remove any extra space below */
}

/* --- Styling for the Arabic Text Content --- */
.page-id-12237 .elementor-element-3034423 .elementor-widget-container {
    /* Styles for the container of the Arabic text if needed */
    /* Text direction will be handled by the 'dir="rtl"' attribute on HTML or body, or by CSS if set */
}

.page-id-12237 .elementor-element-3034423 .elementor-widget-container p {
    font-size: 1rem; /* Adjust as needed for Arabic readability */
    margin-bottom: 1.2em;
    line-height: 1.8; /* Slightly more line height for Arabic can be good */
}

.page-id-12237 .elementor-element-3034423 .elementor-widget-container h1,
.page-id-12237 .elementor-element-3034423 .elementor-widget-container h2,
.page-id-12237 .elementor-element-3034423 .elementor-widget-container h3,
.page-id-12237 .elementor-element-3034423 .elementor-widget-container h4 {
    color: #1A202C; /* Darker color for headings */
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 600;
}

/* Assuming the first <p> in Arabic section might be a title or main heading */
.page-id-12237 .elementor-element-3034423 .elementor-widget-container > p:first-child {
    font-size: 1.6rem; /* Larger for the main title "سياسة الإرجاع" */
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 0.5em; /* Less margin if it's a title */
}
.page-id-12237 .elementor-element-3034423 .elementor-widget-container > p:nth-child(2) { /* "آخر تحديث" line */
    font-size: 0.85rem;
    color: #6B7280; /* Lighter color for subtitle/date */
    margin-bottom: 2em; /* More space after date */
}
/* Style for "المرتجعات", "عملية الإرجاع", "المبالغ المستردة", "الاستثناءات", "يرجى ملاحظة", "الأسئلة" */
/* These are likely within <p> tags and might need more specific targeting if they aren't direct children or if their structure is complex.
   Assuming they are simple <p><strong>...</strong></p> or just <p> with distinct text.
   A more robust way would be to wrap these subheadings in <h3> or <h4> tags in Elementor.
   If they are just <p> tags with bold text, we can try to target them based on that.
*/
.page-id-12237 .elementor-element-3034423 .elementor-widget-container p strong { /* General styling for bolded text in paragraphs */
    font-weight: 600; /* Ensure it's bold */
    color: #2D3748; /* Slightly darker for emphasis */
}
/* Example for a specific subheading if it's just a <p> tag with specific text */
.page-id-12237 .elementor-element-3034423 .elementor-widget-container p:contains("المرتجعات") {
    /* This is a jQuery .elementor-12237 .elementor-element.elementor-element-4c324162, not pure CSS. For CSS, manual classes or structure is better. */
    /* If these are consistently bolded and act as subheadings: */
}
.page-id-12237 .elementor-element-3034423 .elementor-widget-container p br + strong, /* Targeting strong after a line break if that's the structure */
.page-id-12237 .elementor-element-3034423 .elementor-widget-container p > strong:only-child { /* If the strong is the only content of the p */
    display: block; /* Make it act like a heading */
    font-size: 1.25rem;
    color: #1A202C;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
}


.page-id-12237 .elementor-element-3034423 .elementor-widget-container ul {
    list-style-type: none; /* Removing default bullets for the "يرجى ملاحظة" section */
    margin-bottom: 1.2em;
    padding-inline-start: 0; /* No indentation if no bullets */
}

.page-id-12237 .elementor-element-3034423 .elementor-widget-container ul li {
    margin-bottom: 0.5em;
    padding-inline-start: 20px; /* Indent list items */
    position: relative; /* For custom bullet */
}
/* Custom bullet for "يرجى ملاحظة" list items */
.page-id-12237 .elementor-element-3034423 .elementor-widget-container ul li::before {
    content: "●"; /* Custom bullet character */
    color: #2b6cb0; /* Bullet color */
    font-size: 0.8em; /* Bullet size */
    position: absolute;
    left: 0; /* For LTR. For RTL, this needs to be 'right: 0;' */
    /* To handle LTR/RTL for pseudo-elements, it's complex.
       It's better if Elementor adds a class for RTL to the list or li.
       Assuming RTL is set on a parent, we can try: */
}
[dir="rtl"] .page-id-12237 .elementor-element-3034423 .elementor-widget-container ul li::before {
    right: 0;
    left: auto;
}
[dir="ltr"] .page-id-12237 .elementor-element-3034423 .elementor-widget-container ul li::before {
    left: 0;
    right: auto;
}


.page-id-12237 .elementor-element-3034423 .elementor-widget-container a {
    color: #2b6cb0; /* Link color */
    text-decoration: underline;
}
.page-id-12237 .elementor-element-3034423 .elementor-widget-container a:hover {
    color: #2c5282; /* Darker link color on hover */
}


/* --- Mobile Specific Styles --- */
@media (max-width: 767px) {
    .page-id-12237 .elementor-element-4c324162,
    .page-id-12237 .elementor-element-2aca61f {
        padding: 20px 15px;
        margin: 1.5em 10px; /* Give some space from screen edges */
        border-radius: 8px;
    }

    .page-id-12237 .elementor-element-36da8d4 iframe[data-testid="policy-iframe"] {
        min-height: 400px; /* Adjust min-height for mobile if needed */
    }

    .page-id-12237 .elementor-element-3034423 .elementor-widget-container > p:first-child {
        font-size: 1.4rem; /* Adjust title size for mobile */
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container > p:nth-child(2) {
        font-size: 0.8rem; /* Adjust date line size for mobile */
    }

    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p {
        font-size: 0.95rem;
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p br + strong,
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p > strong:only-child {
        font-size: 1.15rem;
    }


    .page-id-12237 .elementor-element-3034423 .elementor-widget-container ul {
        /* padding-inline-start: 0; /* Keep no indent for the ul itself */
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container ul li {
        padding-inline-start: 15px; /* Adjust list item indent on mobile */
    }
}

@media (max-width: 480px) {
    .page-id-12237 .elementor-element-4c324162,
    .page-id-12237 .elementor-element-2aca61f {
        margin: 1em 5px;
        padding: 15px 10px;
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container > p:first-child {
        font-size: 1.3rem; /* Further adjust title size */
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p br + strong,
    .page-id-12237 .elementor-element-3034423 .elementor-widget-container p > strong:only-child {
        font-size: 1.1rem;
    }
}

/*////////////////hide policies/////////////////////////////////////////////

/*
================================================================
Option 1: CSS (Recommended)
================================================================
Add this code to your WordPress Customizer's "Additional CSS" section.
It hides the element if the <html> tag has the language attribute for Arabic (`lang="ar"`),
which is standard for multilingual WordPress sites.
*/

html[lang="ar"] .elementor-element[data-id="c01ae3c"] {
    display: none !important;
}



html:not([lang="ar"]) .elementor-element[data-id="6746d8e"] {
    display: none !important;
}/* End custom CSS */