/*==============================
Privacy Policy
==============================*/
/* Equal spacing */
#copyrights .row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 30px;
}

/* Right align on desktop */
.footer-links-wrapper{
    text-align: right;
}

.footer-social-icons{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Mobile */
@media (max-width: 991px){

    #copyrights .row{
        row-gap: 35px;
    }

    .footer-links-wrapper{
        text-align: left;
    }

    .footer-social-icons{
        justify-content: flex-start;
    }
}
.footer-links-col {
    display: flex;
    justify-content: flex-end;
}

.footer-links-wrapper {
    text-align: right;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list li a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.footer-links-list li a:hover {
    color: #f8d651; /* Change to your theme color */
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social.facebook {
    background: #1877f2;
    color: #fff;
}

.footer-social.twitter {
    background: #1da1f2;
    color: #fff;
}

.footer-social.instagram {
    background: #e4405f;
    color: #fff;
}

.footer-social.linkedin {
    background: #0077b5;
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .footer-links-col {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .footer-links-wrapper {
        text-align: left;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}
.privacy-policy-section{
    padding:90px 0;
    background:#f8f6f1;
}

.privacy-header{
    text-align:center;
    margin-bottom:50px;
}

.policy-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#d4af37;
    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:15px;
}

.privacy-header h1{
    font-size:42px;
    font-weight:700;
    color:#1e1e1e;
    margin-bottom:10px;
}

.privacy-header p{
    color:#777;
    font-size:15px;
}

.privacy-card{
    background:#fff;
    padding:50px;
    border-radius:15px;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
}

.privacy-card>p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.policy-item{
    margin-top:45px;
}

.policy-item h2{
    font-size:28px;
    color:#d4af37;
    margin-bottom:15px;
    position:relative;
    padding-bottom:10px;
}

.policy-item h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#d4af37;
}

.policy-item p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.policy-item ul{
    margin:0;
    padding-left:20px;
}

.policy-item ul li{
    color:#555;
    margin-bottom:12px;
    line-height:1.8;
}

.contact-box{
    background:#faf7ef;
    padding:35px;
    border-left:5px solid #d4af37;
    border-radius:10px;
}

.policy-footer{
    margin-top:50px;
    text-align:center;
    font-weight:600;
    color:#444;
    border-top:1px solid #e5e5e5;
    padding-top:30px;
}

/* Responsive */

@media(max-width:991px){

    .privacy-policy-section{
        padding:70px 0;
    }

    .privacy-card{
        padding:35px;
    }

    .privacy-header h1{
        font-size:34px;
    }

    .policy-item h2{
        font-size:24px;
    }

}

@media(max-width:767px){

    .privacy-policy-section{
        padding:60px 0;
    }

    .privacy-card{
        padding:25px;
    }

    .privacy-header h1{
        font-size:28px;
    }

    .policy-item h2{
        font-size:22px;
    }

}

.footer-use li a{
    font-size: 18px;
    color: black;
}