   /* NEW STYLES FOR POLICY DISCLAIMER */
        .policy-disclaimer {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin-top: 25px;
            border-radius: 0 5px 5px 0;
            font-size: 0.9rem;
        }
        
        .policy-disclaimer strong {
            color: #ff8f00;
        }
        
        .policy-icon {
            color: #ff8f00;
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .policy-checkbox-container {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 5px;
        }
        
        .policy-checkbox {
            margin-right: 10px;
            transform: scale(1.2);
        }
        
        .policy-label {
            font-size: 0.9rem;
            color: #333;
        }
        
        .policy-link {
            color: #1a237e;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }
        
        .policy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        
        .modal-close:hover {
            color: #000;
        }
        
        .policy-content h3 {
            color: #1a237e;
            margin-bottom: 1rem;
        }
        
        .policy-content ul {
            padding-left: 20px;
            margin: 1rem 0;
        }
        
        .policy-content li {
            margin-bottom: 0.5rem;
        }
        
        .plan-card .policy-disclaimer {
            margin-top: 15px;
            padding: 12px;
            font-size: 0.85rem;
        }