/* 환불 정책 스타일 */
.refund-policy {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    margin-top: 16px;
}

.refund-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refund-list li {
    margin-bottom: 20px;
    /* border-bottom: 1px solid #eee; */
    /* padding-bottom: 20px; */
}

.refund-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.refund-list strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.refund-list p {
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

.refund-notice {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed #ddd;
}

.refund-notice p {
    font-size: 14px;
    color: #777;
    margin: 6px 0;
}

.refund-notice a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.refund-notice a:hover {
    text-decoration: underline;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .refund-policy {
        padding: 16px;
    }
    
    .refund-list strong {
        font-size: 16px;
    }
    
    .refund-list p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .refund-policy {
        padding: 12px;
    }
    
    .refund-list li {
        margin-bottom: 16px;
    }
    
    .refund-list strong {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .refund-notice {
        margin-top: 16px;
        padding-top: 12px;
    }
    
    .refund-notice p {
        font-size: 13px;
    }
}