/* privacy.css */

/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f7f7f7;
}

/* Header Styling */
header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 30px 15px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Main Content Styling */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 15px;
}

section h3 {
    font-size: 1.4em;
    color: #34495e;
    margin-bottom: 10px;
}

p, li {
    font-size: 1em;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    main {
        padding: 0 10px;
    }

    footer {
        font-size: 0.9em;
    }
}
