* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: rubik;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    padding: 0 20px;
}

.top-header {
    text-align: center;
    padding: 30px 0 20px 0;
    background-color: #fff;
}

.top-header h1 {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.content {
    padding: 0 20px 40px 20px;
}

.main-title {
    color: #240b5e;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
}

.policy-content {
    max-width: 100%;
}

.policy-content p {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 400;
    text-align: justify;
}

.contact-info {
    margin-top: 25px;
}

.email {
    color: #3948d1;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content {
        padding: 0 15px 30px 15px;
    }
    
    .main-title {
        font-size: 16px;
    }
    
    .policy-content p {
        font-size: 13px;
    }
}