/* public/css/privacy-policy.css */

.privacy-policy-section {
    display: flex;
    justify-content: center; /* Horizontally center the content */
    min-height: 100vh;        /* Ensure the section takes up at least full height */
    background-color: #f9f9f9;
    color: #333;
    padding: 0;               /* Remove any default padding */
}

.privacy-policy-section .container {
    width: 85%;             /* Set the content width to 85% of the screen */
    max-width: 1200px;      /* Limit max width for large screens */
    padding: 30px;          /* Add padding for spacing around the content */
}

.privacy-policy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

.privacy-policy-section p, .privacy-policy-section ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
    text-align: justify;   /* Justify text */
}

.privacy-policy-section a {
    color: #007bff;        /* Blue links */
    text-decoration: none;
}

.privacy-policy-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy-section h2 {
        font-size: 30px;
    }

    .privacy-policy-section p {
        font-size: 14px;
    }

    .privacy-policy-section .container {
        width: 90%; /* Make the content take up more space on small screens */
    }
}
