body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #80808024;
}

.main {
    background-color: white;
    padding: 100px;
}

.policy-header {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.policy-header p {
    font-size: 1.2rem;
}

.policy-section {
    padding: 20px 20px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0d6efd;
}

.policy-section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: #6610f2;
    position: absolute;
    left: 0;
}

.policy-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 2px solid #e9ecef;
}

.policy-footer p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-header p {
        font-size: 1rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section p {
        font-size: 0.9rem;
    }

    .policy-footer p {
        font-size: 0.8rem;
    }
    
    .main {
        padding: 5px;
    }
}