.privacy-policy-container{
    font-family: 'Outfit', sans-serif;
}

.privacy-policy-container h2{
    text-align: center;
    margin-bottom:60px;
    font-weight: 600;
    color: var(--brown);
}

.policy-details{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.policy-details-item{
    display: flex;
    flex-direction: column;
    gap:5px;
}

.policy-details-item h3{
    font-size:25px;
    font-weight: 600;
}

.policy-details-item p,
.policy-details-item li{
    margin: 0;
    font-size:18px;
}

.effective-date{
    margin-bottom: 30px !important;
}

.title{
    color: var(--blue);
}
ul {
    list-style-type: disc; /* Dotted style */
    color: var(--black); /* Set bullet color to black */
}
ul li {
    color: var(--black); /* Set text color to black (optional) */
}


.privacy-contact{
    display: flex;
    flex-direction: column;
}

.privacy-contact a{
    color: var(--black);
    font-size:18px;
}


@media(max-width:991px){
    .container{
        max-width: 100% !important;
        padding: 20px 15px;
    }

    .policy-details-item h3{
        font-size:19px;
    }
    .policy-details-item p,
    .policy-details-item li,
    .privacy-contact a{
        font-size:16px;
    }
}


@media(max-width:767px){
    .privacy-policy-container h2{
        margin-bottom:30px;
    }
    .effective-date{
        margin-bottom: 10px !important;
    }

    .policy-details-item h3{
        font-size:17px;
    }
    .policy-details-item p,
    .policy-details-item li,
    .privacy-contact a{
        font-size:14px;
    }
}