/* General Styles */
body {
    font-family: var(--default-font);
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.2;
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 992px) {
    #terms-sidebar {
        display: none;
    }
}

/* General container styling */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px #e0e0e0;
    border-radius: 5px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px; 
    margin-top: 10px;
}

/* Headings */
.policy-title{
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d465e;
    text-align: center;
    letter-spacing: 0.5px;
    
}

.policy-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #3f8bdc;
    margin: 10px auto 0;
    border-radius: 2px;
}

.privacy-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
    color: #2d465e;
    padding-bottom: 5px;
}

.privacy-container h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #3f8bdc;
    margin: 5px 0 15px;
    border-radius: 2px;
}

/* Paragraphs */
.privacy-container p {
    font-size: 1rem;
    line-height: 1.3;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Lists */
.privacy-container ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.privacy-container ul li {
    font-size: 1rem;
    line-height: 1.3;
    color: #555555;
    margin-bottom: 8px;
    position: relative;
}

.privacy-container ul li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Links */
.privacy-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-container a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Section Styling */
.privacy-container section {
    margin-bottom: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 0px solid #dddddd;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.005);
}

/* Footer Note */
.privacy-container .footer-note {
    font-size: 0.95rem;
    color: #777777;
    text-align: center;
    margin-top: 30px;
}