/* Policy Pages CSS */

/* Ensure proper page layout for policy pages */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.policy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    color: #2c3c5c;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    color: #2c3c5c;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #dd6d3a;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    color: #2c3c5c;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content h4 {
    color: #2c3c5c;
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.policy-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.policy-content strong {
    color: #2c3c5c;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}
