.policy-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid #2c1408;
    padding-bottom: 20px;
}

.policy-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c1408;
    margin: 0;
    line-height: 1.4;
}

.policy-content {
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c1408;
    margin-bottom: 15px;
    margin-top: 0;
}

.policy-subsection {
    margin-bottom: 20px;
    margin-left: 20px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c1408;
    margin-bottom: 10px;
    margin-top: 0;
}

.policy-paragraph {
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

.policy-list {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-list-item {
    margin-bottom: 10px;
    color: #333;
}

.policy-sublist {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.policy-sublist li {
    margin-bottom: 5px;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-text a {
    color: #2c1408;
    text-decoration: underline;
}

.footer-text a:hover {
    color: #27754f;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 20px 10px;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .policy-title {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
    
    .policy-subsection {
        margin-left: 10px;
    }
    
    .policy-list {
        margin-left: 20px;
    }
}

