/* privacy-statement.css */



 @import url('https://fonts.googleapis.com/css?family=Muli:300,700|Nunito');

 

/* General Page Styles */
body {
    background: #ffffff;
    font-family: 'Muli', sans-serif;
    overflow-x: hidden;
    padding-top: 70px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: #00bf63;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-family: 'Muli', sans-serif;
    font-size: 0.8rem;
    margin: 0;
}

header p {
    margin: 0;
}

/* Main Content Styles */
main {
    padding: 40px;
    background: #ffffff;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Section Headings */
h2 {
    font-family: 'Muli', sans-serif;
    font-size: 0.8rem;
    color: #454545;
    margin-bottom: 10px;
}

/* Paragraph and List Styles */
p {
    font-family: 'Muli', sans-serif;
    font-size: 0.8rem;
    margin: 10px 0;
}

ul {
    padding-left: 20px;
    list-style: disc;
    font-size: 0.8rem;
}

/* Link Styles */
a {
    color: #00bf63;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #007bff;
}

/* Footer Styles */
footer {
    background: #051d40;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 40px;
    font-size: 0.8rem;
}
