* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-section {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.section-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.section-text i {
    margin-right: 0.5rem;
    color: #333;
    width: 1.2rem;
    text-align: center;
}
