.privacy-policy {
    padding: 80px 0;
    background-color: #f1f1f1;
    font-family: "Arial", sans-serif; /* Modern font */
}

.privacy-policy__title {
    font-size: 3em;
    font-weight: 600;
    color: #7a3e1d;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px; /* Adding spacing for a more refined look */
}

.privacy-policy__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-left: 6px solid #f0941c; /* Adding a thick border for emphasis */
    border-right: 6px solid #f0941c; /* Adding a thick border for symmetry */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Stronger shadow for depth */
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    text-align: left;
}

.privacy-policy__content h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0941c;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px; /* Adding letter spacing for a more modern feel */
}

.privacy-policy__content h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #7a3e1d;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy__content p {
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #666;
}

.privacy-policy__content ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-policy__content ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #666;
}

@media (max-width: 768px) {
    .privacy-policy__content {
        padding: 25px;
    }

    .privacy-policy__title {
        font-size: 2.5em;
    }

    .privacy-policy__content h2 {
        font-size: 1.6em;
    }

    .privacy-policy__content h3 {
        font-size: 1.3em;
    }
}
