/* Privacy Policy Page Styles */
.privacy-policy {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0;
}
.privacy-heading {
    margin-bottom: 60px;
}

.privacyTxt {
    color: #fff;
}

.privacyTxt p {
    color: #fff;
    margin-bottom: 20px;
}

.privacy-sub {
    margin: 30px 0;
    color: #fff;
}

.privacyTxt ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacyTxt li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.privacyTxt li:before {
    content: url("../images/arrow-left.png");
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3px;
}

.privacyTxt h2.privacy-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.privacyTxt h4.privacy-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacyTxt a {
    color: #ffffff;
    text-decoration: underline;
}

.privacyTxt a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.privacyTxt b {
    font-weight: 600;
    color: #fff;
}

/* Ensure body background is black on privacy policy pages */
body.page-template-page-privacy-policy {
    background-color: #000000;
    color: #ffffff;
}

body.page-template-page-privacy-policy .main-content {
    background-color: #000000;
}

