.policy-page {
    padding: 80px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    margin-bottom: 50px;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.policy-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.policy-content h2 {
    color: #2d3748;
    margin: 40px 0 20px;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 10px;
}

.policy-content h3 {
    color: #4a5568;
    margin: 30px 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1.1rem;
}

.policy-content ul, 
.policy-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 1.1rem;
}

.policy-content a {
    color: #4299e1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.policy-content a:hover {
    border-bottom-color: #4299e1;
}

/* Table styles for policies */
.policy-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.policy-content th,
.policy-content td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.policy-content th {
    background: #f7fafc;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }
}
 