body {
    font-family: 'Vazir', sans-serif; /* Assuming Vazir will be the default body font */
}
.privacy-policy-container {
    font-family: 'Vazir', sans-serif; /* General text within this container */
    color: #333;
    line-height: 1.8;
    padding-top: 40px;
    padding-bottom: 40px;
    direction: rtl; /* Right-to-left for Persian */
}
.privacy-policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.privacy-policy-header h1 {
    font-family: 'Sahel Fd', sans-serif; /* Title font */
    font-size: 2.5rem;
    color: #2c3e50; /* Dark blue-grey */
}
.privacy-policy-header .last-updated {
    font-size: 0.9rem;
    color: #7f8c8d; /* Grey */
    font-family: 'Vazir', sans-serif; /* Ensure this also uses Vazir if it's not a title */
    padding-top: 10px;
}
.policy-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-section .section-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.policy-section .section-icon {
    width: 32px; /* Adjust size as needed */
    height: 32px;
    margin-left: 15px; /* For RTL, this will be on the right of the text */
    fill: #2c3e50; /* Dark blue-grey, changed from blue */
}
.policy-section h2.section-title {
    font-family: 'Sahel Fd', sans-serif; /* Title font */
    font-size: 1.8rem; /* Adjusted font size */
    color: #2c3e50; /* Dark blue-grey, changed from blue */
    margin-bottom: 0;
}
.policy-section p, .policy-section ul li {
    font-family: 'Vazir', sans-serif; /* Paragraph and list item font */
    font-size: 1rem;
    color: #555;
}
.policy-section ul {
    list-style: none;
    padding-right: 20px; /* Indent for RTL */
}
.policy-section ul li {
    padding-right: 25px; /* Space for custom bullet */
    position: relative;
    margin-bottom: 10px;
}
.policy-section ul li::before {
    content: '\2713'; /* Checkmark icon */
    position: absolute;
    right: 0; /* Position for RTL */
    color: #2ecc71; /* Green */
    font-weight: bold;
}
.intro-text {
    margin-bottom: 30px; /* Existing style */
    padding: 0 10%;
}
.intro-text p {
    font-family: 'Vazir', sans-serif; /* Paragraph font */
    font-size: 1.1rem;
    text-align: center;
    color: #555;
}
.contact-info {
    margin-bottom: 20px;
    margin-top: 20px;
}
.contact-info .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-family: 'Vazir', sans-serif; /* Button text font */
}
.contact-info .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) { /* Common breakpoint for mobile devices */
    .privacy-policy-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .privacy-policy-header h1 {
        font-size: 1.5rem; /* Reduced from 2.5rem */
    }
    .policy-section h2.section-title {
        font-size: 1.3rem; /* Reduced from 1.8rem */
    }
    .policy-section .section-icon {
        width: 28px; /* Slightly smaller icon */
        height: 28px;
        margin-left: 10px;
    }
    .policy-section p, .policy-section ul li {
        font-size: 0.9rem; /* Reduced from 1rem */
    }
    .intro-text p {
        font-size: 0.8rem; /* Reduced from 1.1rem */
        padding: 0px;
    }
    .intro-text{
        padding: 0px 10px;
    }
    /* Adjust padding for the main container on mobile if using percentage-based padding in HTML */
    /* Example: if the HTML has style="padding: 50px 10% 0px 10%;" */
    /* You might need to target that specific element if it's an inline style or adjust its class */
    .w-layout-blockcontainer.container-6.privacy-policy-container {
         padding-left: 15px !important; /* Override inline style if necessary */
         padding-right: 15px !important; /* Override inline style if necessary */
    }
}
