/* Minimal custom styles */
        .consent-group {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-top: 12px;
            text-align: left;
        }

        .consent-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            gap: 10px;
        }

        .consent-item input[type="checkbox"] {
            margin-top: 3px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .consent-item label {
            cursor: pointer;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        .consent-item a {
            color: #0066cc;
            text-decoration: none;
        }

        .consent-item a:hover {
            text-decoration: underline;
        }

        .btn-book:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .consent-text-small {
            font-size: 11px;
            color: #666;
            margin-top: 10px;
            line-height: 1.4;
            text-align: left;
        }