/* Custom styles for the Privacy Policy page */

/* Set background color and text color for the body */
body {
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text color */
}

/* Style the main container */
.container {
    background: white; /* White background for the container */
    padding: 30px; /* Padding around the content */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Style for each policy section */
.policy-section {
    margin-bottom: 30px; /* Space between sections */
}

/* Style for headings in policy sections */
.policy-section h2 {
    color: #007bff; /* Bootstrap primary color */
    border-bottom: 2px solid #007bff; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

/* Style for the footer */
footer {
    font-weight: bold; /* Bold text for emphasis */
    margin-top: 20px; /* Space above the footer */
}