/* App Policy Pages Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f8;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    color: #007bff;
}

nav {
    text-align: center;
    margin-bottom: 30px;
}


nav a {
    text-decoration: none;
    color: #fff;
    background-color: #1eaa35;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 5px;
    display: inline-block;
    transition: 0.3s;
}

nav a:hover {
    background-color: #0056b3;
}



h2 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

p, li {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

ul {
    margin-left: 20px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 0.9em;
}
