.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.policy-header:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    margin: 20px auto;
}

.policy-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.policy-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info strong {
    color: #4CAF50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 20px 15px;
    }
    
    .policy-header h1 {
        font-size: 26px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section p {
        font-size: 15px;
    }
}