/* Styling for the Privacy Policy Section */
.privacy-policy {
    padding: 50px 0;
    background-color: #11151c;
    color: #f8f0ed;
}

.privacy-policy .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.privacy-policy h1 {
    font-size: 2.8rem;
    color: #A68463;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    border-bottom: 2px solid #A68463; /* Black underline, change the color or thickness as needed */
    padding-bottom: 5px; /* Adds space between text and underline */
    margin-bottom: 30px; /* Adjust space below the title */
}

.privacy-policy h2 {
    font-size: 2rem;
    color: #A68463;
    margin-top: 30px;
}

.privacy-policy p, .privacy-policy ul {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: justify;
    margin-bottom: 20px;
}

.privacy-policy a {
    color: #A68463;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}
.privacy-policy ul {
    text-align: justify;
    list-style-type: disc;
    margin-left: 20px;
}

.privacy-policy ul li {
    text-align: justify;
    margin-bottom: 10px;
}
.privacy-divider{
    border: none;
    border-top: 2px solid #A68463; /* Adjust this to change the thickness and color */
    width: 1500px; /* The divider will span the full width of the content wrapper */
    margin: 0px auto;   
    margin-top: 40px;
  }

/* Responsive Design */
@media screen and (max-width: 768px) {
    .privacy-policy .container {
        padding: 0 20px;
    }
    .privacy-policy h1 {
        font-size: 2.5rem;
    }

    .privacy-policy h2 {
        font-size: 1.7rem;
    }

    .privacy-policy p, .privacy-policy ul {
        font-size: 0.9rem;
    }
    .privacy-divider{
        display: none;
      }
}

@media screen and (max-width: 480px) {
    .privacy-policy h1 {
        font-size: 2rem;
    }

    .privacy-policy h2 {
        font-size: 1.5rem;
    }

    .privacy-policy p, .privacy-policy ul {
        font-size: 0.8rem;
    }
}
