/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f7fa;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for the main content */
.privacy-policy {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section styling */
section {
    background-color: #fff;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

/* Section heading styling */
section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 15px;
    font-weight: 600;
}

/* Paragraph styling */
section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Styling for unordered lists */
ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 15px;
}

ul li {
    font-size: 16px;
    color: #555;
    /* margin-bottom: 10px; */
}
.profile-dropdown .dropdown-menu {
    position: absolute;
    top: 70%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    display: none;
    padding-left: 0;
    z-index: 1000;
}
/* Links styling */
a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
    text-decoration: underline;
}



/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 10px;
    }

    section {
        margin: 15px 0;
        padding: 20px;
    }

    section h2 {
        font-size: 24px;
    }

    section p, ul li {
        font-size: 15px;
    }

    footer {
        padding: 20px 0;
    }

    footer p {
        font-size: 14px;
    }
}

/* Mobile First - Extra small screens */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .privacy-policy {
        padding: 15px 10px;
    }

    section h2 {
        font-size: 22px;
    }

    footer {
        padding: 15px 0;
    }

    footer p {
        font-size: 13px;
    }
}
