/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/
/* Privacy Policy Styling */
.privacy-policy-content {
}

.policy-section {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.policy-subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.jurisdiction-subsection {
    padding-left: 20px;
    border-left: 3px solid #c4c3c1;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.policy-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.policy-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #c4c3c1;
    font-size: 14px;
    line-height: 30px;
}

.text-gray-700 {
    color: #555555;
    font-size: 18px;
    font-family: "Jost", sans-serif;
}

.text-gray-600 {
    color: #888888;
    font-size: 14px;
    font-style: italic;
}

.line-height-30 {
    line-height: 30px;
}

.m-t20 {
    margin-top: 20px;
}

.m-b10 {
    margin-bottom: 10px;
}

.m-b15 {
    margin-bottom: 15px;
}

.m-b20 {
    margin-bottom: 20px;
}

.m-b30 {
    margin-bottom: 30px;
}

.m-b50 {
    margin-bottom: 50px;
}

.m-b60 {
    margin-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-section-title {
        font-size: 18px;
        line-height: 26px;
    }

    .policy-subsection-title {
        font-size: 15px;
    }

    .text-gray-700 {
        font-size: 14px;
        line-height: 28px;
    }

    .jurisdiction-subsection {
        padding-left: 15px;
    }

    .policy-list li {
        padding-left: 20px;
    }
}