/* Voltify Legal Pages */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 950px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

header h1 {
    color: #1565C0;
    font-size: 34px;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 15px;
}

h2 {
    color: #1565C0;
    margin-top: 30px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #1565C0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.notice {
    background: #E3F2FD;
    border-left: 5px solid #1565C0;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

footer {
    margin-top: 40px;
    text-align: center;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.button-group {
    margin-top: 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: #1565C0;
    color: #fff;
    border-radius: 8px;
    margin: 10px;
    font-weight: bold;
}

.btn:hover {
    background: #0D47A1;
    text-decoration: none;
}

@media (max-width:768px){

.container{
    width:95%;
    padding:25px;
}

header h1{
    font-size:28px;
}

h2{
    font-size:22px;
}

body{
    font-size:15px;
}

}