.policy-section {
    padding: 60px 0 80px;
    background: #E1F5FE;
    min-height: 60vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(41, 182, 246, 0.25);
    border: 3px solid #29B6F6;
}

.policy-content h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #0288D1;
}

.policy-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.policy-date {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

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

.policy-block h2 {
    font-size: 1.3rem;
    color: #0288D1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-block h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #FFD700;
    border-radius: 2px;
}

.policy-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-block ul {
    padding-left: 20px;
}

.policy-block ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-block ul li strong {
    color: #0288D1;
}

@media (max-width: 600px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h1 {
        font-size: 1.5rem;
    }
    
    .policy-block h2 {
        font-size: 1.1rem;
    }
}